From: Tony Lindgren Date: Thu, 8 Mar 2012 20:43:28 +0000 (-0800) Subject: ARM: OMAP2+: Fix compile error when FB_OMAP2 is not set X-Git-Tag: v3.4-rc1~125^2~8^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=001b7f3ecd164ba748e45f698714b3a574a11438;p=karo-tx-linux.git ARM: OMAP2+: Fix compile error when FB_OMAP2 is not set Otherwise we will get: arch/arm/plat-omap/fb.c:101: error: expected ‘)’ before ‘*’ token Signed-off-by: Tony Lindgren Signed-off-by: Tomi Valkeinen --- diff --git a/arch/arm/plat-omap/fb.c b/arch/arm/plat-omap/fb.c index 24e62693b809..dd6f92c99e56 100644 --- a/arch/arm/plat-omap/fb.c +++ b/arch/arm/plat-omap/fb.c @@ -98,6 +98,8 @@ arch_initcall(omap_init_fb); #else -void __init omapfb_set_lcd_config(omap_lcd_config *config) { } +void __init omapfb_set_lcd_config(const struct omap_lcd_config *config) +{ +} #endif