From: Yu Yue Date: Fri, 26 Aug 2011 10:03:42 +0000 (+0800) Subject: of: add include asm/setup.h in drivers/of/fdt.c X-Git-Tag: v3.3-rc1~110^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb52d5801302a3515506891c13338fbaa7222f36;p=profile%2Fivi%2Fkernel-x86-ivi.git of: add include asm/setup.h in drivers/of/fdt.c In the file drivers/of/fdt.c, it uses the COMMAND_LINE_SIZE which is stated in asm/setup.h, so asm/setup.h should be included in drivers/of/fdt.c. Signed-off-by: Yu Yue Signed-off-by: Guan Xuetao Cc: Grant Likerly Cc: devicetree-discuss@lists.ozlabs.org Cc: Arnd Bergmann --- diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 91a375f..ea2bd1b 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -23,6 +23,7 @@ #include #endif /* CONFIG_PPC */ +#include #include char *of_fdt_get_string(struct boot_param_header *blob, u32 offset)