mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[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:
parent
42734dafa4
commit
7e4ef085ea
1 changed files with 3 additions and 2 deletions
|
@ -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 */
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue