diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-02-12 18:02:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:15 -0500 |
commit | 87d1d16937f64dd7822aee8b2e35b2f3ed3200b4 (patch) | |
tree | 8b89c6c5ca7f07ba2e0702015ee7e0a0dc491361 | |
parent | 3248340d3f10871d2ae2d1df9e323f284fa1fdb6 (diff) |
lib/idr.c: remove redundant include
idr.c doesn't seem to use anything from hardirq.h (or anything included
from that). Removing it produces identical objdump -d output, and gives
44 fewer lines in the .idr.o.cmd dependency file.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | lib/idr.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -30,7 +30,6 @@ | |||
30 | #include <linux/idr.h> | 30 | #include <linux/idr.h> |
31 | #include <linux/spinlock.h> | 31 | #include <linux/spinlock.h> |
32 | #include <linux/percpu.h> | 32 | #include <linux/percpu.h> |
33 | #include <linux/hardirq.h> | ||
34 | 33 | ||
35 | #define MAX_IDR_SHIFT (sizeof(int) * 8 - 1) | 34 | #define MAX_IDR_SHIFT (sizeof(int) * 8 - 1) |
36 | #define MAX_IDR_BIT (1U << MAX_IDR_SHIFT) | 35 | #define MAX_IDR_BIT (1U << MAX_IDR_SHIFT) |