svn commit: r324174 - head/sys/dev/smbus

Konstantin Belousov kib at FreeBSD.org
Sun Oct 1 19:03:23 UTC 2017


Author: kib
Date: Sun Oct  1 19:03:21 2017
New Revision: 324174
URL: https://svnweb.freebsd.org/changeset/base/324174

Log:
  Fix supposed typo in the include guard symbol name, use full path for
  the name.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/dev/smbus/smbconf.h

Modified: head/sys/dev/smbus/smbconf.h
==============================================================================
--- head/sys/dev/smbus/smbconf.h	Sun Oct  1 17:04:26 2017	(r324173)
+++ head/sys/dev/smbus/smbconf.h	Sun Oct  1 19:03:21 2017	(r324174)
@@ -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 */


More information about the svn-src-all mailing list