Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Mar 2018 22:50:59 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r331502 - stable/11/sys/modules/i2c/iicbus
Message-ID:  <201803242250.w2OMoxNl016779@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803242250.w2OMoxNl016779>