[PATCH 18/19] add driver_find

From: Dmitry Torokhov
Date: Mon Jun 28 2004 - 00:47:32 EST



===================================================================


ChangeSet@xxxxxx, 2004-06-27 20:49:01-05:00, dtor_core@xxxxxxxxxxxxx
Driver core: add driver_find helper to find a driver by its name

Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx>


drivers/base/driver.c | 16 ++++++++++++++++
include/linux/device.h | 1 +
2 files changed, 17 insertions(+)


===================================================================



diff -Nru a/drivers/base/driver.c b/drivers/base/driver.c
--- a/drivers/base/driver.c 2004-06-27 21:24:06 -05:00
+++ b/drivers/base/driver.c 2004-06-27 21:24:06 -05:00
@@ -111,10 +111,26 @@
up(&drv->unload_sem);
}

+/**
+ * driver_find - find driver on a given bus by its name.
+ * @name: name of the driver.
+ * @bus: bus to seatch for the driver
+ */
+
+struct device_driver *driver_find(const char *name, struct bus_type *bus)
+{
+ struct kobject *k = kset_find_obj(&bus->drivers, name);
+ if (k)
+ return to_drv(k);
+ return NULL;
+}
+
+
EXPORT_SYMBOL(driver_register);
EXPORT_SYMBOL(driver_unregister);
EXPORT_SYMBOL(get_driver);
EXPORT_SYMBOL(put_driver);
+EXPORT_SYMBOL(driver_find);

EXPORT_SYMBOL(driver_create_file);
EXPORT_SYMBOL(driver_remove_file);
diff -Nru a/include/linux/device.h b/include/linux/device.h
--- a/include/linux/device.h 2004-06-27 21:24:06 -05:00
+++ b/include/linux/device.h 2004-06-27 21:24:06 -05:00
@@ -120,6 +120,7 @@

extern struct device_driver * get_driver(struct device_driver * drv);
extern void put_driver(struct device_driver * drv);
+extern struct device_driver *driver_find(const char *name, struct bus_type *bus);


/* driverfs interface for exporting driver attributes */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/