aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-03-12 18:22:34 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-03-12 18:22:34 +0000
commitf0f72ce2624bc2ce02e39193b6d51e353d1a93a2 (patch)
treeee98f96a032e47010c819a96d5d544e53025b0f5 /target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch
parent04f2ef9e66a17e8d76fc2160f8f0795db136e858 (diff)
downloadupstream-f0f72ce2624bc2ce02e39193b6d51e353d1a93a2.tar.gz
upstream-f0f72ce2624bc2ce02e39193b6d51e353d1a93a2.tar.bz2
upstream-f0f72ce2624bc2ce02e39193b6d51e353d1a93a2.zip
gemini: remove 3.3 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35995
Diffstat (limited to 'target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch')
-rw-r--r--target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch b/target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch
deleted file mode 100644
index faedfe0297..0000000000
--- a/target/linux/gemini/patches-3.3/111-arm-gemini-add-watchdog-device.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/arch/arm/mach-gemini/devices.c
-+++ b/arch/arm/mach-gemini/devices.c
-@@ -117,3 +117,20 @@ int __init platform_register_rtc(void)
- return platform_device_register(&gemini_rtc_device);
- }
-
-+static struct resource wdt_resource = {
-+ .start = GEMINI_WAQTCHDOG_BASE,
-+ .end = GEMINI_WAQTCHDOG_BASE + 0x18,
-+ .flags = IORESOURCE_MEM,
-+};
-+
-+static struct platform_device wdt_device = {
-+ .name = "gemini-wdt",
-+ .id = 0,
-+ .resource = &wdt_resource,
-+ .num_resources = 1,
-+};
-+
-+int __init platform_register_watchdog(void)
-+{
-+ return platform_device_register(&wdt_device);
-+}
---- a/arch/arm/mach-gemini/common.h
-+++ b/arch/arm/mach-gemini/common.h
-@@ -25,5 +25,6 @@ extern int platform_register_uart(void);
- extern int platform_register_pflash(unsigned int size,
- struct mtd_partition *parts,
- unsigned int nr_parts);
-+extern int platform_register_watchdog(void);
-
- #endif /* __GEMINI_COMMON_H__ */