summaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-26 10:12:54 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-26 10:12:54 +0000
commit3e9fcfad69e5dde22357a178db05b6af84d6aaa4 (patch)
tree319207c8cca862e344b13185bc273595bd5f4a2d /target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch
parentb33a0cab3fdfb9471cb0d8ca07a7dbdd373682e0 (diff)
[ar7] drop support for 2.6.30
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20439 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch')
-rw-r--r--target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch b/target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch
deleted file mode 100644
index 21c95a765..000000000
--- a/target/linux/ar7/patches-2.6.30/140-watchdog_bootcr.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/drivers/watchdog/ar7_wdt.c
-+++ b/drivers/watchdog/ar7_wdt.c
-@@ -298,14 +298,28 @@ static struct miscdevice ar7_wdt_miscdev
- .fops = &ar7_wdt_fops,
- };
-
-+#define AR7_WDT_HARDWARE_ENABLE 0x10
-+
- static int __init ar7_wdt_init(void)
- {
- int rc;
-+ u32 *bootcr;
-+ u32 bootcr_value;
-
- spin_lock_init(&wdt_lock);
-
- ar7_wdt_get_regs();
-
-+ /* arch/mips/ar7/clocks.c is the only other thing that reads this */
-+ bootcr = (u32 *)ioremap_nocache(AR7_REGS_DCL, 4);
-+ bootcr_value = *bootcr;
-+ iounmap(bootcr);
-+
-+ if (!(bootcr_value & AR7_WDT_HARDWARE_ENABLE)) {
-+ printk(KERN_INFO DRVNAME ": watchdog disabled in hardware (bootcr=%#x)\n", bootcr_value);
-+ return -ENODEV;
-+ }
-+
- if (!request_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt),
- LONGNAME)) {
- printk(KERN_WARNING DRVNAME ": watchdog I/O region busy\n");