fix off-by-one maximum timeout in the wathchdog default counter for bcm6345, thanks...
[openwrt/openwrt.git] / target / linux / brcm63xx / files / arch / mips / bcm63xx / dev-wdt.c
index 4aa2037dbd4894c203a8a99fc318be2469e150e2..6e184891dc6f4154d113663dccb25b74103a47d2 100644 (file)
@@ -32,7 +32,5 @@ int __init bcm63xx_wdt_register(void)
        wdt_resources[0].end = wdt_resources[0].start;
        wdt_resources[0].end += RSET_WDT_SIZE - 1;
 
-       /* Disable watchdog for 6345 until we fix it */
-       if (!BCMCPU_IS_6345())
-               return platform_device_register(&bcm63xx_wdt_device);
+       return platform_device_register(&bcm63xx_wdt_device);
 }