diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2017-10-01 19:03:21 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2017-10-01 19:03:21 +0000 |
commit | 48a225d412de4cb6f81f1d4cc26ecc8893aa1cc4 (patch) | |
tree | cf9ccd2cb0c27c86b7a64029b824e8a8896833b9 | |
parent | 41e5a22698438d23a02bab6a8701d5495e32fb60 (diff) | |
download | src-48a225d412de4cb6f81f1d4cc26ecc8893aa1cc4.tar.gz src-48a225d412de4cb6f81f1d4cc26ecc8893aa1cc4.zip |
Fix supposed typo in the include guard symbol name, use full path for
the name.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=324174
-rw-r--r-- | sys/dev/smbus/smbconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/smbus/smbconf.h b/sys/dev/smbus/smbconf.h index ceb80aca267c..e994606c549c 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 <sys/queue.h> @@ -124,4 +124,4 @@ extern devclass_t smbus_devclass; #define SMBUS_MAXVER 1 #define SMBUS_PREFVER SMBUS_MODVER -#endif +#endif /* __DEV_SMBUS_SMBCONF_H */ |