Commit e4bc1662 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

driver core: remove subsystem_init()

There is only one user of it, and it is only a wrapper for kset_init().
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a4e8b912
...@@ -238,7 +238,6 @@ kobj_set_kset_s(obj,subsys) ...@@ -238,7 +238,6 @@ kobj_set_kset_s(obj,subsys)
- Assumes that obj->kobj exists, and is a struct kobject. - Assumes that obj->kobj exists, and is a struct kobject.
- Sets the kset of that kobject to the kset <subsys>. - Sets the kset of that kobject to the kset <subsys>.
void subsystem_init(struct kset *s);
int subsystem_register(struct kset *s); int subsystem_register(struct kset *s);
void subsystem_unregister(struct kset *s); void subsystem_unregister(struct kset *s);
......
...@@ -861,7 +861,7 @@ int __init classes_init(void) ...@@ -861,7 +861,7 @@ int __init classes_init(void)
/* ick, this is ugly, the things we go through to keep from showing up /* ick, this is ugly, the things we go through to keep from showing up
* in sysfs... */ * in sysfs... */
subsystem_init(&class_obj_subsys); kset_init(&class_obj_subsys);
if (!class_obj_subsys.kobj.parent) if (!class_obj_subsys.kobj.parent)
class_obj_subsys.kobj.parent = &class_obj_subsys.kobj; class_obj_subsys.kobj.parent = &class_obj_subsys.kobj;
return 0; return 0;
......
...@@ -217,7 +217,6 @@ extern struct kset hypervisor_subsys; ...@@ -217,7 +217,6 @@ extern struct kset hypervisor_subsys;
#define kobj_set_kset_s(obj,subsys) \ #define kobj_set_kset_s(obj,subsys) \
(obj)->kobj.kset = &(subsys) (obj)->kobj.kset = &(subsys)
extern void subsystem_init(struct kset *);
extern int __must_check subsystem_register(struct kset *); extern int __must_check subsystem_register(struct kset *);
extern void subsystem_unregister(struct kset *); extern void subsystem_unregister(struct kset *);
......
...@@ -617,11 +617,6 @@ struct kobject * kset_find_obj(struct kset * kset, const char * name) ...@@ -617,11 +617,6 @@ struct kobject * kset_find_obj(struct kset * kset, const char * name)
return ret; return ret;
} }
void subsystem_init(struct kset *s)
{
kset_init(s);
}
int subsystem_register(struct kset *s) int subsystem_register(struct kset *s)
{ {
return kset_register(s); return kset_register(s);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment