GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / kobj_map.h
blob18ca75ffcc5a159b81be6bc153bd9d5e01ae4adc
1 /*
2 * kobj_map.h
3 */
5 #ifndef _KOBJ_MAP_H_
6 #define _KOBJ_MAP_H_
8 #include <linux/mutex.h>
10 typedef struct kobject *kobj_probe_t(dev_t, int *, void *);
11 struct kobj_map;
13 int kobj_map(struct kobj_map *, dev_t, unsigned long, struct module *,
14 kobj_probe_t *, int (*)(dev_t, void *), void *);
15 void kobj_unmap(struct kobj_map *, dev_t, unsigned long);
16 struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *);
17 struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *);
19 #endif /* _KOBJ_MAP_H_ */