lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 3 Jan 2021 20:32:39 +0000 From: Joe Pater <02joepater06@...il.com> To: Greg Kroah-Hartman <gregkh@...uxfoundation.org> Cc: "Rafael J . Wysocki" <rafael@...nel.org>, linux-kernel@...r.kernel.org, Joe Pater <02joepater06@...il.com> Subject: [PATCH] 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@...il.com> --- drivers/base/bus.c | 17 ----------------- 1 file changed, 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) { base-commit: 3516bd729358a2a9b090c1905bd2a3fa926e24c6 prerequisite-patch-id: 87366344c3e939f5a7942e66e16851e56e5cca38 -- 2.29.2
Powered by blists - more mailing lists