Commit 40dda872 authored by Arvind Yadav's avatar Arvind Yadav Committed by Tony Lindgren

ARM: OMAP1: constify gpio_led

gpio_led are not supposed to change at runtime.
struct gpio_led_platform_data working with const gpio_led
provided by <linux/leds.h>. So mark the non-const structs
as const.
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent ce397d21
...@@ -274,7 +274,7 @@ static struct platform_device h2_kp_device = { ...@@ -274,7 +274,7 @@ static struct platform_device h2_kp_device = {
.resource = h2_kp_resources, .resource = h2_kp_resources,
}; };
static struct gpio_led h2_gpio_led_pins[] = { static const struct gpio_led h2_gpio_led_pins[] = {
{ {
.name = "h2:red", .name = "h2:red",
.default_trigger = "heartbeat", .default_trigger = "heartbeat",
......
...@@ -326,7 +326,7 @@ static struct spi_board_info h3_spi_board_info[] __initdata = { ...@@ -326,7 +326,7 @@ static struct spi_board_info h3_spi_board_info[] __initdata = {
}, },
}; };
static struct gpio_led h3_gpio_led_pins[] = { static const struct gpio_led h3_gpio_led_pins[] = {
{ {
.name = "h3:red", .name = "h3:red",
.default_trigger = "heartbeat", .default_trigger = "heartbeat",
......
...@@ -292,7 +292,7 @@ static struct platform_device herald_gpiokeys_device = { ...@@ -292,7 +292,7 @@ static struct platform_device herald_gpiokeys_device = {
}; };
/* LEDs for the Herald. These connect to the HTCPLD GPIO device. */ /* LEDs for the Herald. These connect to the HTCPLD GPIO device. */
static struct gpio_led gpio_leds[] = { static const struct gpio_led gpio_leds[] = {
{"dpad", NULL, HTCPLD_GPIO_LED_DPAD, 0, 0, LEDS_GPIO_DEFSTATE_OFF}, {"dpad", NULL, HTCPLD_GPIO_LED_DPAD, 0, 0, LEDS_GPIO_DEFSTATE_OFF},
{"kbd", NULL, HTCPLD_GPIO_LED_KBD, 0, 0, LEDS_GPIO_DEFSTATE_OFF}, {"kbd", NULL, HTCPLD_GPIO_LED_KBD, 0, 0, LEDS_GPIO_DEFSTATE_OFF},
{"vibrate", NULL, HTCPLD_GPIO_LED_VIBRATE, 0, 0, LEDS_GPIO_DEFSTATE_OFF}, {"vibrate", NULL, HTCPLD_GPIO_LED_VIBRATE, 0, 0, LEDS_GPIO_DEFSTATE_OFF},
......
...@@ -167,7 +167,7 @@ static struct platform_device *osk5912_devices[] __initdata = { ...@@ -167,7 +167,7 @@ static struct platform_device *osk5912_devices[] __initdata = {
&osk5912_cf_device, &osk5912_cf_device,
}; };
static struct gpio_led tps_leds[] = { static const struct gpio_led tps_leds[] = {
/* NOTE: D9 and D2 have hardware blink support. /* NOTE: D9 and D2 have hardware blink support.
* Also, D9 requires non-battery power. * Also, D9 requires non-battery power.
*/ */
...@@ -385,7 +385,7 @@ static struct platform_device osk5912_lcd_device = { ...@@ -385,7 +385,7 @@ static struct platform_device osk5912_lcd_device = {
.id = -1, .id = -1,
}; };
static struct gpio_led mistral_gpio_led_pins[] = { static const struct gpio_led mistral_gpio_led_pins[] = {
{ {
.name = "mistral:red", .name = "mistral:red",
.default_trigger = "heartbeat", .default_trigger = "heartbeat",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment