From 48a225d412de4cb6f81f1d4cc26ecc8893aa1cc4 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Sun, 1 Oct 2017 19:03:21 +0000 Subject: [PATCH] Fix supposed typo in the include guard symbol name, use full path for the name. Sponsored by: The FreeBSD Foundation MFC after: 1 week --- sys/dev/smbus/smbconf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/smbus/smbconf.h b/sys/dev/smbus/smbconf.h index ceb80aca267..e994606c549 100644 --- a/sys/dev/smbus/smbconf.h +++ b/sys/dev/smbus/smbconf.h @@ -25,8 +25,8 @@ * * $FreeBSD$ */ -#ifndef __SMBONF_H -#define __SMBONF_H +#ifndef __DEV_SMBUS_SMBCONF_H +#define __DEV_SMBUS_SMBCONF_H #include @@ -124,4 +124,4 @@ extern devclass_t smbus_devclass; #define SMBUS_MAXVER 1 #define SMBUS_PREFVER SMBUS_MODVER -#endif +#endif /* __DEV_SMBUS_SMBCONF_H */