aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Pater <02joepater06@gmail.com>2021-01-03 20:32:39 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-01-07 20:33:03 +0100
commit7520962b66906574267994c285d04c739ebaf722 (patch)
tree29218a2099b4db92ee5e7a75af28fa99592a086a
parentLinux 5.11-rc2 (diff)
downloadlinux-dev-7520962b66906574267994c285d04c739ebaf722.tar.xz
linux-dev-7520962b66906574267994c285d04c739ebaf722.zip
drivers: base: remove unused function find_bus()
find_bus() isn't doing anyone any good sitting in a '#if 0' (as it's been doing since 2006!). Signed-off-by: Joe Pater <02joepater06@gmail.com> Link: https://lore.kernel.org/r/20210103203238.111565-1-02joepater06@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/base/bus.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index a9c23ecebc7c..b48ad519c34e 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -729,23 +729,6 @@ int device_reprobe(struct device *dev)
}
EXPORT_SYMBOL_GPL(device_reprobe);
-/**
- * find_bus - locate bus by name.
- * @name: name of bus.
- *
- * Call kset_find_obj() to iterate over list of buses to
- * find a bus by name. Return bus if found.
- *
- * Note that kset_find_obj increments bus' reference count.
- */
-#if 0
-struct bus_type *find_bus(char *name)
-{
- struct kobject *k = kset_find_obj(bus_kset, name);
- return k ? to_bus(k) : NULL;
-}
-#endif /* 0 */
-
static int bus_add_groups(struct bus_type *bus,
const struct attribute_group **groups)
{