diff options
author | Sudhakar Rajashekhara <sudhakar.raj@ti.com> | 2009-11-03 01:21:19 -0500 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-11-25 13:21:36 -0500 |
commit | 1ef203c3242c17da6559c4be1aa91c689d3efbb0 (patch) | |
tree | bbb6607fd51a46235e87ddac1954bbc14d4d941b /arch/arm | |
parent | 039c5ee3c901aded685fbbfbbea636f2f3ffc0e2 (diff) |
davinci: DA8XX/OMAP-L1XX: fix compiler warning
When kernel is built with CONFIG_DEBUG_SECTION_MISMATCH=y
option, using da8xx_omapl_defconfig, some warnings are
observed:
WARNING: vmlinux.o(.text+0xc2a4): Section mismatch in reference
from the function da850_evm_setup_nor_nand() to the variable
.init.data:da850_nand_pins
The function da850_evm_setup_nor_nand() references
the variable __initdata da850_nand_pins.
This is often because da850_evm_setup_nor_nand lacks a __initdata
annotation or the annotation of da850_nand_pins is wrong.
This patch fixes such warnings.
Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-davinci/board-da830-evm.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-davinci/board-da850-evm.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-davinci/board-da830-evm.c b/arch/arm/mach-davinci/board-da830-evm.c index 537a048c84be..e7f24169e2f5 100644 --- a/arch/arm/mach-davinci/board-da830-evm.c +++ b/arch/arm/mach-davinci/board-da830-evm.c | |||
@@ -433,8 +433,8 @@ static struct at24_platform_data da830_evm_i2c_eeprom_info = { | |||
433 | .context = (void *)0x7f00, | 433 | .context = (void *)0x7f00, |
434 | }; | 434 | }; |
435 | 435 | ||
436 | static int da830_evm_ui_expander_setup(struct i2c_client *client, int gpio, | 436 | static int __init da830_evm_ui_expander_setup(struct i2c_client *client, |
437 | unsigned ngpio, void *context) | 437 | int gpio, unsigned ngpio, void *context) |
438 | { | 438 | { |
439 | gpio_request(gpio + 6, "UI MUX_MODE"); | 439 | gpio_request(gpio + 6, "UI MUX_MODE"); |
440 | 440 | ||
@@ -455,7 +455,7 @@ static int da830_evm_ui_expander_teardown(struct i2c_client *client, int gpio, | |||
455 | return 0; | 455 | return 0; |
456 | } | 456 | } |
457 | 457 | ||
458 | static struct pcf857x_platform_data da830_evm_ui_expander_info = { | 458 | static struct pcf857x_platform_data __initdata da830_evm_ui_expander_info = { |
459 | .gpio_base = DAVINCI_N_GPIO, | 459 | .gpio_base = DAVINCI_N_GPIO, |
460 | .setup = da830_evm_ui_expander_setup, | 460 | .setup = da830_evm_ui_expander_setup, |
461 | .teardown = da830_evm_ui_expander_teardown, | 461 | .teardown = da830_evm_ui_expander_teardown, |
diff --git a/arch/arm/mach-davinci/board-da850-evm.c b/arch/arm/mach-davinci/board-da850-evm.c index 19eb0479d26d..529e47215e0b 100644 --- a/arch/arm/mach-davinci/board-da850-evm.c +++ b/arch/arm/mach-davinci/board-da850-evm.c | |||
@@ -176,7 +176,7 @@ static u32 ui_card_detected; | |||
176 | #define HAS_MMC 0 | 176 | #define HAS_MMC 0 |
177 | #endif | 177 | #endif |
178 | 178 | ||
179 | static void da850_evm_setup_nor_nand(void) | 179 | static __init void da850_evm_setup_nor_nand(void) |
180 | { | 180 | { |
181 | int ret = 0; | 181 | int ret = 0; |
182 | 182 | ||