dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Driver core: bus.c cleanups

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@stusta.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Adrian Bunk 2006-06-26 22:26:56 +02:00 committed by Greg Kroah-Hartman
parent 42734dafa4
commit 7e4ef085ea
1 changed files with 3 additions and 2 deletions

View File

@ -129,7 +129,7 @@ static struct kobj_type ktype_bus = {
};
decl_subsys(bus, &ktype_bus, NULL);
static decl_subsys(bus, &ktype_bus, NULL);
#ifdef CONFIG_HOTPLUG
@ -598,12 +598,13 @@ void put_bus(struct bus_type * bus)
*
* 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 */
/**