dect
/
linux-2.6
Archived
13
0
Fork 0

davinci: fix section mismatch warning in arch/arm/mach-davinci/board-dm646x-evm.c

A section mismatch is reported for gpio_led_platform_data
as it is referenced by a non annotated function (evm_led_setup)

This patch fixes the issue by converting the __initconst to const
as is the case in arch/arm/mach-davinci/board-dm644x-evm.c file.

Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
This commit is contained in:
Sekhar Nori 2009-11-04 17:08:42 +05:30 committed by Kevin Hilman
parent 99381b4f11
commit 445094f994
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static struct gpio_led evm_leds[] = {
{ .name = "DS4", .active_low = 1, },
};
static __initconst struct gpio_led_platform_data evm_led_data = {
static const struct gpio_led_platform_data evm_led_data = {
.num_leds = ARRAY_SIZE(evm_leds),
.leds = evm_leds,
};