From: Gabor Juhos Date: Tue, 31 May 2011 22:53:34 +0000 (+0000) Subject: ar71xx: the watchdog uses the reference clock on the AR933x SoCs X-Git-Tag: reboot~16651 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=88c45e3130a8d2e64d4a62118bbe3b0e39553564;hp=7acbacab8c5c7ef15b9764b487d20be751b1ea49 ar71xx: the watchdog uses the reference clock on the AR933x SoCs SVN-Revision: 27060 --- diff --git a/target/linux/ar71xx/files/drivers/watchdog/ar71xx_wdt.c b/target/linux/ar71xx/files/drivers/watchdog/ar71xx_wdt.c index 688b9152c4..4e4c2548d9 100644 --- a/target/linux/ar71xx/files/drivers/watchdog/ar71xx_wdt.c +++ b/target/linux/ar71xx/files/drivers/watchdog/ar71xx_wdt.c @@ -219,6 +219,17 @@ static int __devinit ar71xx_wdt_probe(struct platform_device *pdev) int ret; switch (ar71xx_soc) { + case AR71XX_SOC_AR7130: + case AR71XX_SOC_AR7141: + case AR71XX_SOC_AR7161: + case AR71XX_SOC_AR7240: + case AR71XX_SOC_AR7241: + case AR71XX_SOC_AR7242: + wdt_clk_freq = ar71xx_ahb_freq; + break; + + case AR71XX_SOC_AR9330: + case AR71XX_SOC_AR9331: case AR71XX_SOC_AR9341: case AR71XX_SOC_AR9342: case AR71XX_SOC_AR9344: @@ -226,8 +237,7 @@ static int __devinit ar71xx_wdt_probe(struct platform_device *pdev) break; default: - wdt_clk_freq = ar71xx_ahb_freq; - break; + BUG(); } max_timeout = (0xfffffffful / wdt_clk_freq);