svn commit: r237014 - stable/8/sys/dev/pci

John Baldwin jhb at FreeBSD.org
Wed Jun 13 17:45:39 UTC 2012


Author: jhb
Date: Wed Jun 13 17:45:38 2012
New Revision: 237014
URL: http://svn.freebsd.org/changeset/base/237014

Log:
  Restore 229262 which was accidentally reverted in a prior change:
  Implement BUS_ADD_CHILD() for the isab(4) driver.
  
  Submitted by:	fabient

Modified:
  stable/8/sys/dev/pci/isa_pci.c

Modified: stable/8/sys/dev/pci/isa_pci.c
==============================================================================
--- stable/8/sys/dev/pci/isa_pci.c	Wed Jun 13 17:18:16 2012	(r237013)
+++ stable/8/sys/dev/pci/isa_pci.c	Wed Jun 13 17:45:38 2012	(r237014)
@@ -57,6 +57,7 @@ static device_method_t isab_methods[] = 
     DEVMETHOD(device_resume,		bus_generic_resume),
 
     /* Bus interface */
+    DEVMETHOD(bus_add_child,		bus_generic_add_child),
     DEVMETHOD(bus_alloc_resource,	bus_generic_alloc_resource),
     DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
     DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),


More information about the svn-src-stable mailing list