提交 7e4ef085 编写于 作者: A Adrian Bunk 提交者: Greg Kroah-Hartman

[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: NAdrian Bunk <bunk@stusta.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 42734daf
...@@ -129,7 +129,7 @@ static struct kobj_type ktype_bus = { ...@@ -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 #ifdef CONFIG_HOTPLUG
...@@ -598,12 +598,13 @@ void put_bus(struct bus_type * bus) ...@@ -598,12 +598,13 @@ void put_bus(struct bus_type * bus)
* *
* Note that kset_find_obj increments bus' reference count. * Note that kset_find_obj increments bus' reference count.
*/ */
#if 0
struct bus_type * find_bus(char * name) struct bus_type * find_bus(char * name)
{ {
struct kobject * k = kset_find_obj(&bus_subsys.kset, name); struct kobject * k = kset_find_obj(&bus_subsys.kset, name);
return k ? to_bus(k) : NULL; return k ? to_bus(k) : NULL;
} }
#endif /* 0 */
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册