From ea23edca26c663c6622ca5cf883859f40d6320cc Mon Sep 17 00:00:00 2001 From: Werner Sembach Date: Thu, 18 Feb 2021 20:18:05 +0100 Subject: [PATCH] Use universal header guard --- src/tuxedo_io/tongfang_wmi.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tuxedo_io/tongfang_wmi.h b/src/tuxedo_io/tongfang_wmi.h index 05c9c93..fe3bd97 100644 --- a/src/tuxedo_io/tongfang_wmi.h +++ b/src/tuxedo_io/tongfang_wmi.h @@ -16,7 +16,8 @@ * You should have received a copy of the GNU General Public License * along with this software. If not, see . */ -#pragma once +#ifndef TONGFANG_WMI_H +#define TONGFANG_WMI_H #include #include @@ -348,3 +349,5 @@ static u32 uw_set_fan(u32 fan_index, u8 fan_speed) return 0; } + +#endif