svn commit: r261397 - head/sys/dev/fdt

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Feb 2 05:41:13 UTC 2014


Author: nwhitehorn
Date: Sun Feb  2 05:41:12 2014
New Revision: 261397
URL: http://svnweb.freebsd.org/changeset/base/261397

Log:
  Allow nesting of simplebuses.

Modified:
  head/sys/dev/fdt/simplebus.c

Modified: head/sys/dev/fdt/simplebus.c
==============================================================================
--- head/sys/dev/fdt/simplebus.c	Sun Feb  2 05:21:12 2014	(r261396)
+++ head/sys/dev/fdt/simplebus.c	Sun Feb  2 05:41:12 2014	(r261397)
@@ -122,6 +122,7 @@ static driver_t simplebus_driver = {
 };
 static devclass_t simplebus_devclass;
 DRIVER_MODULE(simplebus, nexus, simplebus_driver, simplebus_devclass, 0, 0);
+DRIVER_MODULE(simplebus, simplebus, simplebus_driver, simplebus_devclass, 0, 0);
 
 static int
 simplebus_probe(device_t dev)


More information about the svn-src-all mailing list