diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-10-02 14:23:27 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-10-02 14:23:27 +0000 |
commit | 324c4009be74efbb6337762ded920cb44d3fe5fb (patch) | |
tree | 7ee5eff74114df04fdf9619de01803f7eed7e6f1 /target | |
parent | 1b6f5bd7f5d9f5cea469a8282adf71e3cf5d2c02 (diff) | |
download | upstream-324c4009be74efbb6337762ded920cb44d3fe5fb.tar.gz upstream-324c4009be74efbb6337762ded920cb44d3fe5fb.tar.bz2 upstream-324c4009be74efbb6337762ded920cb44d3fe5fb.zip |
Rewrite platform code to be smarter
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9094 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/rdc/files/arch/i386/mach-rdc/platform.c | 49 |
1 files changed, 33 insertions, 16 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 6809dcdd3f..78f1d0b7c6 100644 --- a/target/linux/rdc/files/arch/i386/mach-rdc/platform.c +++ b/target/linux/rdc/files/arch/i386/mach-rdc/platform.c @@ -28,12 +28,16 @@ #include <linux/list.h> #include <linux/device.h> #include <linux/platform_device.h> +#include <linux/version.h> +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) +#include <linux/leds.h> +#endif #include <asm/gpio.h> #define PFX "rdc321x: " -/* FIXME : Flash */ +/* Flash */ static struct resource rdc_flash_resource[] = { [0] = { .start = (u32)-CONFIG_MTD_RDC3210_SIZE, @@ -50,34 +54,47 @@ 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, }, +}; + +static struct gpio_led_platform_data rdc321x_led_data = { + .num_leds = ARRAY_SIZE(default_leds), + .leds = default_leds, +}; + +static struct platform_device rdc321x_leds = { + .name = "leds-gpio", + .id = -1, + .dev = { + .platform_data = &rdc321x_led_data, + } +}; +#else static struct platform_device rdc321x_leds = { - .name = "rdc321x-leds", + .name "rdc321x-leds", .id = -1, .num_resources = 0, }; +#endif +/* Watchdog */ static struct platform_device rdc321x_wdt = { .name = "rdc321x-wdt", .id = -1, .num_resources = 0, }; +static struct platform_device *rdc321x_devs[] = { + &rdc_flash_device, + &rdc321x_leds, + &rdc321x_wdt +}; + static int __init rdc_board_setup(void) { - int err; - - err = platform_device_register(&rdc_flash_device); - if (err) - printk(KERN_ALERT PFX "failed to register flash\n"); - - err = platform_device_register(&rdc321x_leds); - if (err) - printk(KERN_ALERT PFX "failed to register LEDS\n"); - - err = platform_device_register(&rdc321x_wdt); - printk(KERN_ALERT PFX "failed to register watchdog\n"); - - return err; + return platform_add_devices(rdc321x_devs, ARRAY_SIZE(rdc321x_devs)); } arch_initcall(rdc_board_setup); |