svn commit: r329729 - in head/sys/modules/spi: at45d mx25l

Ian Lepore ian at FreeBSD.org
Wed Feb 21 16:34:05 UTC 2018


Author: ian
Date: Wed Feb 21 16:34:04 2018
New Revision: 329729
URL: https://svnweb.freebsd.org/changeset/base/329729

Log:
  Remove some files that snuck in via cut and paste.
  
  Having these compiled into the module causes the kobj method descriptors
  to be resolved incorrectly (by the compile-time linker instead of the
  kernel linker), which then leads to hours of frustrating debugging.

Modified:
  head/sys/modules/spi/at45d/Makefile
  head/sys/modules/spi/mx25l/Makefile

Modified: head/sys/modules/spi/at45d/Makefile
==============================================================================
--- head/sys/modules/spi/at45d/Makefile	Wed Feb 21 16:33:08 2018	(r329728)
+++ head/sys/modules/spi/at45d/Makefile	Wed Feb 21 16:34:04 2018	(r329729)
@@ -9,7 +9,6 @@ SRCS=	at45d.c
 SRCS+=	\
 	bus_if.h \
 	device_if.h \
-	spibus_if.c \
 	spibus_if.h \
 
 .if !empty(OPT_FDT)

Modified: head/sys/modules/spi/mx25l/Makefile
==============================================================================
--- head/sys/modules/spi/mx25l/Makefile	Wed Feb 21 16:33:08 2018	(r329728)
+++ head/sys/modules/spi/mx25l/Makefile	Wed Feb 21 16:34:04 2018	(r329729)
@@ -9,7 +9,6 @@ SRCS=	mx25l.c
 SRCS+=	\
 	bus_if.h \
 	device_if.h \
-	spibus_if.c \
 	spibus_if.h \
 
 .if !empty(OPT_FDT)


More information about the svn-src-head mailing list