aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-03-19 15:57:01 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-03-19 15:57:01 +0000
commit5348f46c8042dd9f5e94d63c48d94ffef38c8a7c (patch)
tree96376db569b3c5379ed068d3478108ca6d6254b4 /target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c
parent8a471efe012d23a9292b4f951e6d09717595faa3 (diff)
downloadupstream-5348f46c8042dd9f5e94d63c48d94ffef38c8a7c.tar.gz
upstream-5348f46c8042dd9f5e94d63c48d94ffef38c8a7c.tar.bz2
upstream-5348f46c8042dd9f5e94d63c48d94ffef38c8a7c.zip
ar71xx: add latch_change field to rb750_led_platform_data
SVN-Revision: 31023
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c
index bcd961e1bd..4ef1b10d37 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-rb750.c
@@ -47,11 +47,7 @@ static struct rb750_led_data rb750_leds[] = {
}
};
-static struct rb750_led_platform_data rb750_leds_data = {
- .num_leds = ARRAY_SIZE(rb750_leds),
- .leds = rb750_leds,
-};
-
+static struct rb750_led_platform_data rb750_leds_data;
static struct platform_device rb750_leds_device = {
.name = "leds-rb750",
.dev = {
@@ -155,6 +151,9 @@ static void __init rb750_setup(void)
/* WAN port */
ath79_register_eth(0);
+ rb750_leds_data.num_leds = ARRAY_SIZE(rb750_leds);
+ rb750_leds_data.leds = rb750_leds;
+ rb750_leds_data.latch_change = rb750_nand_latch_change;
platform_device_register(&rb750_leds_device);
rb750_nand_data.nce_line = RB750_NAND_NCE;