diff options
author | Tony Lindgren <tony@atomide.com> | 2012-03-08 15:43:28 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-03-09 02:53:21 -0500 |
commit | 001b7f3ecd164ba748e45f698714b3a574a11438 (patch) | |
tree | e331bf6d9b1807027841325bddf11bcb82c5f347 | |
parent | 4614679c9d3b77e87b390b6afe8a8dfc980f4387 (diff) |
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 <tony@atomide.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | arch/arm/plat-omap/fb.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); | |||
98 | 98 | ||
99 | #else | 99 | #else |
100 | 100 | ||
101 | void __init omapfb_set_lcd_config(omap_lcd_config *config) { } | 101 | void __init omapfb_set_lcd_config(const struct omap_lcd_config *config) |
102 | { | ||
103 | } | ||
102 | 104 | ||
103 | #endif | 105 | #endif |