diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-08-09 20:20:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-09 23:45:06 -0400 |
commit | 459b37d423104f00e87d1934821bc8739979d0e4 (patch) | |
tree | 22433f169c493acb46c6c46ba26c0e1bc6cb24a9 /kernel/range.c | |
parent | 2ee7c922f20c96dba56fd378a466790d87f42e84 (diff) |
kernel/range: remove unused definition of ARRAY_SIZE()
Remove duplicate definition of ARRAY_SIZE(), which was never used anyway.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/range.c')
-rw-r--r-- | kernel/range.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/range.c b/kernel/range.c index 74e2e6114927..471b66acabb5 100644 --- a/kernel/range.c +++ b/kernel/range.c | |||
@@ -7,10 +7,6 @@ | |||
7 | 7 | ||
8 | #include <linux/range.h> | 8 | #include <linux/range.h> |
9 | 9 | ||
10 | #ifndef ARRAY_SIZE | ||
11 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) | ||
12 | #endif | ||
13 | |||
14 | int add_range(struct range *range, int az, int nr_range, u64 start, u64 end) | 10 | int add_range(struct range *range, int az, int nr_range, u64 start, u64 end) |
15 | { | 11 | { |
16 | if (start >= end) | 12 | if (start >= end) |