enable start-stop-daemon by default, i want to use this to clean up a few init script...
[openwrt.git] / target / linux / rb532-2.6 / files / arch / mips / rb500 / devices.c
index 079eb09..be40106 100644 (file)
@@ -128,6 +128,8 @@ static struct platform_device cf_slot0 = {
 static struct resource nand_slot0_res[] = {
        {
                .name = "nand_membase",
+               .start = 0x18a20000,
+               .end = (0x18a20000+0x1000)-1,
                .flags = IORESOURCE_MEM 
        }
 };
@@ -139,11 +141,17 @@ static struct platform_device nand_slot0 = {
        .num_resources = ARRAY_SIZE(nand_slot0_res),
 };
 
+static struct platform_device rb500led = {
+       .name = "rb500-led",
+       .id = 0,
+};
+
 
 static struct platform_device *rb500_devs[] = {
        &korina_dev0,
        &nand_slot0,
-       &cf_slot0
+       &cf_slot0,
+       &rb500led
 };
 
 static void __init parse_mac_addr(char* macstr)
This page took 0.02179 seconds and 4 git commands to generate.