svn commit: r329534 - head/sys/modules/i2c/iicbus

Ian Lepore ian at FreeBSD.org
Sun Feb 18 22:54:20 UTC 2018


Author: ian
Date: Sun Feb 18 22:54:19 2018
New Revision: 329534
URL: https://svnweb.freebsd.org/changeset/base/329534

Log:
  Arrange SRCS= as 1 file per line, alphabetical, so it's easier to maintain.
  Whitespace only, no functional changes.

Modified:
  head/sys/modules/i2c/iicbus/Makefile

Modified: head/sys/modules/i2c/iicbus/Makefile
==============================================================================
--- head/sys/modules/i2c/iicbus/Makefile	Sun Feb 18 22:12:20 2018	(r329533)
+++ head/sys/modules/i2c/iicbus/Makefile	Sun Feb 18 22:54:19 2018	(r329534)
@@ -1,8 +1,16 @@
 # $FreeBSD$
 
-.PATH:		${SRCTOP}/sys/dev/iicbus
-KMOD		= iicbus
-SRCS		= device_if.h bus_if.h iicbus_if.h iicbus_if.c \
-		  iiconf.h iiconf.c iicbus.h iicbus.c
+.PATH:	${SRCTOP}/sys/dev/iicbus
+
+KMOD=	iicbus
+SRCS=	\
+	bus_if.h \
+	device_if.h \
+	iicbus.c \
+	iicbus.h \
+	iicbus_if.c \
+	iicbus_if.h \
+	iiconf.c \
+	iiconf.h \
 
 .include <bsd.kmod.mk>


More information about the svn-src-head mailing list