svn commit: r344611 - head/sys/dev/flash

Ian Lepore ian at FreeBSD.org
Tue Feb 26 22:52:09 UTC 2019


Author: ian
Date: Tue Feb 26 22:52:08 2019
New Revision: 344611
URL: https://svnweb.freebsd.org/changeset/base/344611

Log:
  Add a module dependency on fdt_slicer.

Modified:
  head/sys/dev/flash/mx25l.c

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Tue Feb 26 22:50:01 2019	(r344610)
+++ head/sys/dev/flash/mx25l.c	Tue Feb 26 22:52:08 2019	(r344611)
@@ -686,5 +686,6 @@ static driver_t mx25l_driver = {
 DRIVER_MODULE(mx25l, spibus, mx25l_driver, mx25l_devclass, 0, 0);
 MODULE_DEPEND(mx25l, spibus, 1, 1, 1);
 #ifdef	FDT
+MODULE_DEPEND(mx25l, fdt_slicer, 1, 1, 1);
 SPIBUS_PNP_INFO(compat_data);
 #endif


More information about the svn-src-head mailing list