diff options
-rw-r--r-- | include/linux/idr.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/idr.h b/include/linux/idr.h index 7fb3ff9c7b0e..d37c8d808b0f 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h | |||
@@ -8,6 +8,10 @@ | |||
8 | * Small id to pointer translation service avoiding fixed sized | 8 | * Small id to pointer translation service avoiding fixed sized |
9 | * tables. | 9 | * tables. |
10 | */ | 10 | */ |
11 | |||
12 | #ifndef __IDR_H__ | ||
13 | #define __IDR_H__ | ||
14 | |||
11 | #include <linux/types.h> | 15 | #include <linux/types.h> |
12 | #include <linux/bitops.h> | 16 | #include <linux/bitops.h> |
13 | 17 | ||
@@ -77,3 +81,5 @@ int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id); | |||
77 | void idr_remove(struct idr *idp, int id); | 81 | void idr_remove(struct idr *idp, int id); |
78 | void idr_destroy(struct idr *idp); | 82 | void idr_destroy(struct idr *idp); |
79 | void idr_init(struct idr *idp); | 83 | void idr_init(struct idr *idp); |
84 | |||
85 | #endif /* __IDR_H__ */ | ||