]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/arm/mach-mx25/devices.c
arm/mx25: add watchdog device
[net-next-2.6.git] / arch / arm / mach-mx25 / devices.c
index 3f4b8a0b5facf9d1c7200ce7f21d1b85890f37b6..3a405fa400eb064a6a8e612027709b7601cb4d34 100644 (file)
@@ -500,3 +500,18 @@ struct platform_device mx25_fb_device = {
                .coherent_dma_mask = 0xFFFFFFFF,
        },
 };
+
+static struct resource mxc_wdt_resources[] = {
+       {
+               .start = MX25_WDOG_BASE_ADDR,
+               .end = MX25_WDOG_BASE_ADDR + SZ_16K - 1,
+               .flags = IORESOURCE_MEM,
+       },
+};
+
+struct platform_device mxc_wdt = {
+       .name = "imx2-wdt",
+       .id = 0,
+       .num_resources = ARRAY_SIZE(mxc_wdt_resources),
+       .resource = mxc_wdt_resources,
+};