[2.6 patch] drivers/base/bus.c: cleanups

From: Adrian Bunk
Date: Mon Jun 26 2006 - 16:26:24 EST


This patch contains the following cleanups:
- make the needlessly global bus_subsys static
- #if 0 the unused find_bus()

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

drivers/base/bus.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

--- linux-2.6.17-mm2-full/drivers/base/bus.c.old 2006-06-26 19:46:11.000000000 +0200
+++ linux-2.6.17-mm2-full/drivers/base/bus.c 2006-06-26 20:19:01.000000000 +0200
@@ -130,7 +130,7 @@

};

-decl_subsys(bus, &ktype_bus, NULL);
+static decl_subsys(bus, &ktype_bus, NULL);


#ifdef CONFIG_HOTPLUG
@@ -599,12 +599,13 @@
*
* 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_subsys.kset, name);
return k ? to_bus(k) : NULL;
}
+#endif /* 0 */


/**

-
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/