From 1d54109dcb1a8104b4018992b52901bbb5e8e993 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 5 Oct 2007 13:50:21 +0000 Subject: [PATCH] Led is not active low by default, register the watchdog git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9138 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/rdc/files/arch/i386/mach-rdc/platform.c | 4 ++-- target/linux/rdc/files/arch/i386/mach-rdc/wdt.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target/linux/rdc/files/arch/i386/mach-rdc/platform.c b/target/linux/rdc/files/arch/i386/mach-rdc/platform.c index 78f1d0b7c..877287b85 100644 --- a/target/linux/rdc/files/arch/i386/mach-rdc/platform.c +++ b/target/linux/rdc/files/arch/i386/mach-rdc/platform.c @@ -56,7 +56,7 @@ static struct platform_device rdc_flash_device = { /* LEDS */ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) static struct gpio_led default_leds[] = { - { .name = "rdc:dmz", .gpio = 1, .active_low = 1, }, + { .name = "rdc:dmz", .gpio = 1, }, }; static struct gpio_led_platform_data rdc321x_led_data = { @@ -73,7 +73,7 @@ static struct platform_device rdc321x_leds = { }; #else static struct platform_device rdc321x_leds = { - .name "rdc321x-leds", + .name = "rdc321x-leds", .id = -1, .num_resources = 0, }; diff --git a/target/linux/rdc/files/arch/i386/mach-rdc/wdt.c b/target/linux/rdc/files/arch/i386/mach-rdc/wdt.c index 39956f35a..13b69f68a 100644 --- a/target/linux/rdc/files/arch/i386/mach-rdc/wdt.c +++ b/target/linux/rdc/files/arch/i386/mach-rdc/wdt.c @@ -249,7 +249,7 @@ static struct platform_driver rdc321x_wdt_driver = { .remove = rdc321x_wdt_remove, .driver = { .owner = THIS_MODULE, - .name = "rdc321x_wdt", + .name = "rdc321x-wdt", }, }; -- 2.35.1