From: Rasmus Villemoes Date: Thu, 12 Feb 2015 23:02:43 +0000 (-0800) Subject: lib/idr.c: remove redundant include X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=87d1d16937f64dd7822aee8b2e35b2f3ed3200b4;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/idr.c b/lib/idr.c index e654aebd5f80..5335c43adf46 100644 --- a/lib/idr.c +++ b/lib/idr.c @@ -30,7 +30,6 @@ #include #include #include -#include #define MAX_IDR_SHIFT (sizeof(int) * 8 - 1) #define MAX_IDR_BIT (1U << MAX_IDR_SHIFT)