From 9db498b8368ba91bd17ad741cdf5c775c042a0d3 Mon Sep 17 00:00:00 2001 From: Christoffer Sandberg Date: Tue, 7 Sep 2021 19:47:31 +0200 Subject: [PATCH] Add/correct interface include guards --- src/clevo_interfaces.h | 4 ++-- src/uniwill_interfaces.h | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/clevo_interfaces.h b/src/clevo_interfaces.h index f2fe0f1..1b384e6 100644 --- a/src/clevo_interfaces.h +++ b/src/clevo_interfaces.h @@ -16,8 +16,8 @@ * You should have received a copy of the GNU General Public License * along with this software. If not, see . */ -#ifndef TUXEDO_INTERFACES_H -#define TUXEDO_INTERFACES_H +#ifndef CLEVO_INTERFACES_H +#define CLEVO_INTERFACES_H #include diff --git a/src/uniwill_interfaces.h b/src/uniwill_interfaces.h index a167be9..b2184bf 100644 --- a/src/uniwill_interfaces.h +++ b/src/uniwill_interfaces.h @@ -16,6 +16,9 @@ * You should have received a copy of the GNU General Public License * along with this software. If not, see . */ +#ifndef UNIWILL_INTERFACES_H +#define UNIWILL_INTERFACES_H + #define UNIWILL_WMI_MGMT_GUID_BA "ABBC0F6D-8EA1-11D1-00A0-C90629100000" #define UNIWILL_WMI_MGMT_GUID_BB "ABBC0F6E-8EA1-11D1-00A0-C90629100000" #define UNIWILL_WMI_MGMT_GUID_BC "ABBC0F6F-8EA1-11D1-00A0-C90629100000" @@ -27,3 +30,5 @@ #define MODULE_ALIAS_UNIWILL_WMI() \ MODULE_ALIAS("wmi:" UNIWILL_WMI_EVENT_GUID_2); \ MODULE_ALIAS("wmi:" UNIWILL_WMI_MGMT_GUID_BC); + +#endif