1 #ifndef __LINUX_KOBJECT_WRAPPER_H
2 #define __LINUX_KOBJECT_WRAPPER_H 1
4 #include_next <linux/kobject.h>
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
8 #define kobject_init(kobj, ktype) rpl_kobject_init(kobj, ktype)
9 static inline void rpl_kobject_init(struct kobject *kobj, struct kobj_type *ktype)
16 #endif /* linux/kobject.h wrapper */