diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/kobject.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/kobject.h b/include/linux/kobject.h index 0b97b3a5391..f91aeb74566 100644 --- a/include/linux/kobject.h +++ b/include/linux/kobject.h @@ -150,11 +150,13 @@ struct kset {  	struct kset_uevent_ops	*uevent_ops;  }; -  extern void kset_init(struct kset * k);  extern int __must_check kset_add(struct kset * k);  extern int __must_check kset_register(struct kset * k);  extern void kset_unregister(struct kset * k); +extern struct kset * __must_check kset_create_and_add(const char *name, +						struct kset_uevent_ops *u, +						struct kobject *parent_kobj);  static inline struct kset * to_kset(struct kobject * kobj)  {  |