aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2017-11-23 19:17:11 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2017-11-23 19:17:11 +0100
commitb5d52b205285df826dea709933b4a20cd192242f (patch)
tree21f6e17c2999427c4b3a2496283856e4f023125b /target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch
parentc048ca0ce03608e0906137aaf5d3a3abc8d16991 (diff)
downloadupstream-b5d52b205285df826dea709933b4a20cd192242f.tar.gz
upstream-b5d52b205285df826dea709933b4a20cd192242f.tar.bz2
upstream-b5d52b205285df826dea709933b4a20cd192242f.zip
sunxi: remove support for kernel 4.4
Kernel 4.9 is working good on this target, remove support for kernel 4.4 now. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch')
-rw-r--r--target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch b/target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch
deleted file mode 100644
index a4b2af9e5a..0000000000
--- a/target/linux/sunxi/patches-4.4/135-clk-sunxi-fix-signedness-bug.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b1558f168f4ef5956913d73fe330c4da85c74349 Mon Sep 17 00:00:00 2001
-From: Dan Carpenter <dan.carpenter@oracle.com>
-Date: Sat, 12 Dec 2015 15:43:46 +0300
-Subject: [PATCH] clk: sunxi: signedness bug in sun8i_h3_bus_gates_init()
-
-"index" needs to be signed for the error handling to work.
-
-Fixes: ab6e23a4e388 ('clk: sunxi: Add H3 clocks support')
-Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
-Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
----
- drivers/clk/sunxi/clk-sun8i-bus-gates.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/clk/sunxi/clk-sun8i-bus-gates.c
-+++ b/drivers/clk/sunxi/clk-sun8i-bus-gates.c
-@@ -40,7 +40,7 @@ static void __init sun8i_h3_bus_gates_in
- const __be32 *p;
- int number, i;
- u8 clk_bit;
-- u32 index;
-+ int index;
-
- reg = of_io_request_and_map(node, 0, of_node_full_name(node));
- if (IS_ERR(reg))