Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kobj: add comment and multiple inclusion protection

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Robert P. J. Day and committed by
Jiri Kosina
3e21ec22 320cc51d

+9
+9
include/linux/kobj_map.h
··· 1 + /* 2 + * kobj_map.h 3 + */ 4 + 5 + #ifndef _KOBJ_MAP_H_ 6 + #define _KOBJ_MAP_H_ 7 + 1 8 #include <linux/mutex.h> 2 9 3 10 typedef struct kobject *kobj_probe_t(dev_t, int *, void *); ··· 15 8 void kobj_unmap(struct kobj_map *, dev_t, unsigned long); 16 9 struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *); 17 10 struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *); 11 + 12 + #endif /* _KOBJ_MAP_H_ */