Date: Sun, 1 Oct 2017 19:03:22 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324174 - head/sys/dev/smbus Message-ID: <201710011903.v91J3MnQ095190@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710011903.v91J3MnQ095190>