svn commit: r331502 - stable/11/sys/modules/i2c/iicbus
Ian Lepore
ian at FreeBSD.org
Sat Mar 24 22:51:00 UTC 2018
Author: ian
Date: Sat Mar 24 22:50:59 2018
New Revision: 331502
URL: https://svnweb.freebsd.org/changeset/base/331502
Log:
MFC r329534-r329535
r329534:
Arrange SRCS= as 1 file per line, alphabetical, so it's easier to maintain.
Whitespace only, no functional changes.
r329535:
Add iic_recover_bus.c, now part of iicbus. This should have been added
as part of r320463.
Modified:
stable/11/sys/modules/i2c/iicbus/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/modules/i2c/iicbus/Makefile
==============================================================================
--- stable/11/sys/modules/i2c/iicbus/Makefile Sat Mar 24 22:39:38 2018 (r331501)
+++ stable/11/sys/modules/i2c/iicbus/Makefile Sat Mar 24 22:50:59 2018 (r331502)
@@ -1,9 +1,18 @@
# $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 \
+ iic_recover_bus.c \
+ iicbus.c \
+ iicbus.h \
+ iicbus_if.c \
+ iicbus_if.h \
+ iiconf.c \
+ iiconf.h \
.if !empty(OPT_FDT)
SRCS+= ofw_iicbus.c ofw_bus_if.h
More information about the svn-src-stable-11
mailing list