Commit 5a75983eef1193c43caebde6643a218bd8d8390e

Authored by Kamalesh Babulal
Committed by Linus Torvalds
1 parent e1265205c0

Missing include file in kallsyms.h

The Build with randconfig fails with following error with the
2.6.24-rc4-git9

include/linux/kallsyms.h:56: error: `NULL' undeclared (first use in this
function)
include/linux/kallsyms.h:56: error: (Each undeclared identifier is
reported only once
include/linux/kallsyms.h:56: error: for each function it appears in.)
make[2]: *** [arch/powerpc/platforms/cell/spu_callbacks.o] Error 1
make[1]: *** [arch/powerpc/platforms/cell] Error 2
make: *** [arch/powerpc/platforms] Error 2

Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

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

include/linux/kallsyms.h
... ... @@ -6,6 +6,7 @@
6 6 #define _LINUX_KALLSYMS_H
7 7  
8 8 #include <linux/errno.h>
  9 +#include <linux/stddef.h>
9 10  
10 11 #define KSYM_NAME_LEN 128
11 12 #define KSYM_SYMBOL_LEN (sizeof("%s+%#lx/%#lx [%s]") + (KSYM_NAME_LEN - 1) + \