aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-03-16 07:41:24 +0000
committerJohn Crispin <blogic@openwrt.org>2015-03-16 07:41:24 +0000
commitb34d1f6b435b05479c3ddee74be1ef428ae7455a (patch)
tree5517152c2f56e9778150440c47def9ed06b3eea2 /target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch
parentad966e5eaad945f22ffdfd404b58e0c3ef6cd9dc (diff)
downloadmaster-187ad058-b34d1f6b435b05479c3ddee74be1ef428ae7455a.tar.gz
master-187ad058-b34d1f6b435b05479c3ddee74be1ef428ae7455a.tar.bz2
master-187ad058-b34d1f6b435b05479c3ddee74be1ef428ae7455a.zip
sunxi: drop 3.14 support
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44824 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch')
-rw-r--r--target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch b/target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch
deleted file mode 100644
index 75c444d6d0..0000000000
--- a/target/linux/sunxi/patches-3.14/155-wdt-add-new-compats.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ac45fe6b0056d1f92b7c7e5f13514b591a6a9caf Mon Sep 17 00:00:00 2001
-From: Maxime Ripard <maxime.ripard@free-electrons.com>
-Date: Sun, 2 Feb 2014 14:55:23 +0100
-Subject: [PATCH] wdt: sunxi: Introduce a new compatible for the A10 and A31
-
-For historical reasons, the Allwinner A10 compatibles are not following the
-patterns used for this other Allwinner SoCs.
-
-Introduce a new compatible following the usual pattern, and deprecate the olders.
-
-Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
----
- Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt | 7 ++++---
- drivers/watchdog/sunxi_wdt.c | 1 +
- 2 files changed, 5 insertions(+), 3 deletions(-)
-
---- a/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt
-+++ b/Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt
-@@ -2,13 +2,14 @@ Allwinner SoCs Watchdog timer
-
- Required properties:
-
--- compatible : should be "allwinner,<soc-family>-wdt", the currently supported
-- SoC families being sun4i and sun6i
-+- compatible : should be either "allwinner,sun4i-a10-wdt" or
-+ "allwinner,sun6i-a31-wdt" (deprecated:
-+ "allwinner,sun4i-wdt", "allwinner,sun6i-wdt")
- - reg : Specifies base physical address and size of the registers.
-
- Example:
-
- wdt: watchdog@01c20c90 {
-- compatible = "allwinner,sun4i-wdt";
-+ compatible = "allwinner,sun4i-a10-wdt";
- reg = <0x01c20c90 0x10>;
- };
---- a/drivers/watchdog/sunxi_wdt.c
-+++ b/drivers/watchdog/sunxi_wdt.c
-@@ -206,6 +206,7 @@ static void sunxi_wdt_shutdown(struct pl
-
- static const struct of_device_id sunxi_wdt_dt_ids[] = {
- { .compatible = "allwinner,sun4i-wdt" },
-+ { .compatible = "allwinner,sun4i-a10-wdt" },
- { /* sentinel */ }
- };
- MODULE_DEVICE_TABLE(of, sunxi_wdt_dt_ids);