Skip to content

Commit

Permalink
kobject: remove kobj_set_kset_s as no one is using it anymore
Browse files Browse the repository at this point in the history
What a confusing name for a macro...

Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jan 25, 2008
1 parent 3514fac commit 12d03da
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions include/linux/kobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,24 +202,6 @@ extern struct kset kernel_subsys;
/* The global /sys/hypervisor/ subsystem */
extern struct kset hypervisor_subsys;

/*
* Helpers for setting the kset of registered objects.
* Often, a registered object belongs to a kset embedded in a
* subsystem. These do no magic, just make the resulting code
* easier to follow.
*/

/**
* kobj_set_kset_s(obj,subsys) - set kset for embedded kobject.
* @obj: ptr to some object type.
* @subsys: a subsystem object (not a ptr).
*
* Can be used for any object type with an embedded ->kobj.
*/

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

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

Expand Down

0 comments on commit 12d03da

Please sign in to comment.