tracing: Add #undef to fix compile error
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / kobj_map.h
CommitLineData
3e21ec22
RD
1/*
2 * kobj_map.h
3 */
4
5#ifndef _KOBJ_MAP_H_
6#define _KOBJ_MAP_H_
7
58383af6 8#include <linux/mutex.h>
4e57b681 9
1da177e4
LT
10typedef struct kobject *kobj_probe_t(dev_t, int *, void *);
11struct kobj_map;
12
13int kobj_map(struct kobj_map *, dev_t, unsigned long, struct module *,
14 kobj_probe_t *, int (*)(dev_t, void *), void *);
15void kobj_unmap(struct kobj_map *, dev_t, unsigned long);
16struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *);
58383af6 17struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *);
3e21ec22
RD
18
19#endif /* _KOBJ_MAP_H_ */