Commit 3e21ec224f0acbd2e9beeb3dea04edc1d36dbe1f

Authored by Robert P. J. Day
Committed by Jiri Kosina
1 parent 320cc51d90

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>

Showing 1 changed file with 9 additions and 0 deletions Side-by-side Diff

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 *);
... ... @@ -8,4 +15,6 @@
8 15 void kobj_unmap(struct kobj_map *, dev_t, unsigned long);
9 16 struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *);
10 17 struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *);
  18 +
  19 +#endif /* _KOBJ_MAP_H_ */