]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Apr 2018 21:23:01 +0000 (23:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Apr 2018 21:23:01 +0000 (23:23 +0200)
added patches:
clk-at91-fix-clk-generated-compilation.patch

queue-4.9/clk-at91-fix-clk-generated-compilation.patch [new file with mode: 0644]

diff --git a/queue-4.9/clk-at91-fix-clk-generated-compilation.patch b/queue-4.9/clk-at91-fix-clk-generated-compilation.patch
new file mode 100644 (file)
index 0000000..fda9897
--- /dev/null
@@ -0,0 +1,30 @@
+From 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224 Mon Sep 17 00:00:00 2001
+From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
+Date: Mon, 5 Jun 2017 00:02:57 +0200
+Subject: clk: at91: fix clk-generated compilation
+
+From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
+
+commit 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224 upstream.
+
+Fix missing }
+
+Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
+Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
+Cc: Amit Pundir <amit.pundir@linaro.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/clk/at91/clk-generated.c |    1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/clk/at91/clk-generated.c
++++ b/drivers/clk/at91/clk-generated.c
+@@ -266,6 +266,7 @@ at91_clk_register_generated(struct regma
+       if (ret) {
+               kfree(gck);
+               hw = ERR_PTR(ret);
++      }
+       return hw;
+ }