Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67939
b: refs/heads/master
c: d6b05b8
h: refs/heads/master
i:
  67937: 45cd1ed
  67935: 0823c4f
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 12, 2007
1 parent 6f3c431 commit b21eceb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6a8d8abb6e4497ae4132a9b1f0a956ea501f1c46
refs/heads/master: d6b05b84edf590ff872de6310ec20d60b5b37dd2
3 changes: 2 additions & 1 deletion trunk/drivers/base/bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,8 @@ int bus_register(struct bus_type * bus)
if (retval)
goto out;

subsys_set_kset(bus, bus_subsys);
bus->subsys.kobj.kset = &bus_subsys;

retval = subsystem_register(&bus->subsys);
if (retval)
goto out;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/base/class.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int class_register(struct class * cls)
if (error)
return error;

subsys_set_kset(cls, class_subsys);
cls->subsys.kobj.kset = &class_subsys;

error = subsystem_register(&cls->subsys);
if (!error) {
Expand Down
13 changes: 0 additions & 13 deletions trunk/include/linux/kobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,19 +241,6 @@ extern struct kset hypervisor_subsys;
#define kset_set_kset_s(obj,subsys) \
(obj)->kset.kobj.kset = &(subsys)

/**
* subsys_set_kset(obj,subsys) - set kset for subsystem
* @obj: ptr to some object type.
* @_subsys: a subsystem object (not a ptr).
*
* Can be used for any object type with an embedded ->subsys.
* Sets the kset of @obj's kobject to @subsys.kset. This makes
* the object a member of that kset.
*/

#define subsys_set_kset(obj,_subsys) \
(obj)->subsys.kobj.kset = &(_subsys)

extern void subsystem_init(struct kset *);
extern int __must_check subsystem_register(struct kset *);
extern void subsystem_unregister(struct kset *);
Expand Down

0 comments on commit b21eceb

Please sign in to comment.