diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2011-05-30 11:11:45 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-05-31 17:17:02 +0400 |
commit | 89c4705ed58a9e6faa7649eb561aead79bb77b3f (patch) | |
tree | bc491ff3fe66dcd47fee96f7b6ca54bb7ce4b968 /arch/arm/mach-omap2/board-zoom-display.c | |
parent | f9fa1bb9d7a3c9537d6abd4ad47c58fe27862625 (diff) | |
download | linux-89c4705ed58a9e6faa7649eb561aead79bb77b3f.tar.xz |
OMAP2+: Fix 9 section mismatch(es) warnings from mach-omap2/built-in.o
The serial*_data should have been marked as __initdata as per
it's usage in the board files. Fix the same to remove the
section mismatch warnings caused by it.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Silesh C V <silesh@ti.com>
[tony@atomide.com: updated with additional fixes from Silesh]
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-zoom-display.c')
-rw-r--r-- | arch/arm/mach-omap2/board-zoom-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-zoom-display.c b/arch/arm/mach-omap2/board-zoom-display.c index c7c6beb1ec24..d4683ba5f721 100644 --- a/arch/arm/mach-omap2/board-zoom-display.c +++ b/arch/arm/mach-omap2/board-zoom-display.c @@ -26,7 +26,7 @@ static struct gpio zoom_lcd_gpios[] __initdata = { { LCD_PANEL_QVGA_GPIO, GPIOF_OUT_INIT_HIGH, "lcd qvga" }, }; -static void zoom_lcd_panel_init(void) +static void __init zoom_lcd_panel_init(void) { zoom_lcd_gpios[0].gpio = (omap_rev() > OMAP3430_REV_ES3_0) ? LCD_PANEL_RESET_GPIO_PROD : |