summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_bus.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2006-06-21 17:48:03 +0000
committerjhb <jhb@FreeBSD.org>2006-06-21 17:48:03 +0000
commit32a6c3d3d5b12aedaf29422a64e5406515692329 (patch)
tree86c813596488c63da997d4f8e424edb6e00e905e /sys/kern/subr_bus.c
parent2c4ca6adca3f28ae070727d257eb33e2a5d17b82 (diff)
downloadFreeBSD-src-32a6c3d3d5b12aedaf29422a64e5406515692329.zip
FreeBSD-src-32a6c3d3d5b12aedaf29422a64e5406515692329.tar.gz
Fix two comments and a style fix.
Diffstat (limited to 'sys/kern/subr_bus.c')
-rw-r--r--sys/kern/subr_bus.c26
1 files changed, 19 insertions, 7 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c
index 44dcd47..a09f187 100644
--- a/sys/kern/subr_bus.c
+++ b/sys/kern/subr_bus.c
@@ -826,6 +826,19 @@ devclass_find(const char *classname)
return (devclass_find_internal(classname, 0, FALSE));
}
+/*
+ * Call BUS_DRIVER_ADDED for any existing busses in this class.
+ */
+static void
+devclass_driver_added(devclass_t dc, driver_t *driver)
+{
+ int i;
+
+ for (i = 0; i < dc->maxunit; i++)
+ if (dc->devices[i])
+ BUS_DRIVER_ADDED(dc->devices[i], driver);
+}
+
/**
* @brief Add a device driver to a device class
*
@@ -841,7 +854,6 @@ int
devclass_add_driver(devclass_t dc, driver_t *driver)
{
driverlink_t dl;
- int i;
PDEBUG(("%s", DRIVERNAME(driver)));
@@ -866,12 +878,7 @@ devclass_add_driver(devclass_t dc, driver_t *driver)
TAILQ_INSERT_TAIL(&dc->drivers, dl, link);
driver->refs++; /* XXX: kobj_mtx */
- /*
- * Call BUS_DRIVER_ADDED for any existing busses in this class.
- */
- for (i = 0; i < dc->maxunit; i++)
- if (dc->devices[i])
- BUS_DRIVER_ADDED(dc->devices[i], driver);
+ devclass_driver_added(dc, driver);
bus_data_generation_update();
return (0);
@@ -3754,6 +3761,11 @@ driver_module_handler(module_t mod, int what, void *arg)
break;
/*
+ * XXX: Need to find all the device classes whose parent
+ * is bus_devclass. Not only that, it has to be recursive.
+ */
+
+ /*
* If the driver has any base classes, make the
* devclass inherit from the devclass of the driver's
* first base class. This will allow the system to
OpenPOWER on IntegriCloud