From: Greg Kroah-Hartman Date: Tue, 10 Apr 2018 21:23:01 +0000 (+0200) Subject: 4.9-stable patches X-Git-Tag: v4.16.2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e4e467bfe403f66b4c63091f7c0878d7bec9ec1;p=thirdparty%2Fkernel%2Fstable-queue.git 4.9-stable patches added patches: clk-at91-fix-clk-generated-compilation.patch --- 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 index 00000000000..fda98976847 --- /dev/null +++ b/queue-4.9/clk-at91-fix-clk-generated-compilation.patch @@ -0,0 +1,30 @@ +From 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224 Mon Sep 17 00:00:00 2001 +From: Alexandre Belloni +Date: Mon, 5 Jun 2017 00:02:57 +0200 +Subject: clk: at91: fix clk-generated compilation + +From: Alexandre Belloni + +commit 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224 upstream. + +Fix missing } + +Signed-off-by: Alexandre Belloni +Signed-off-by: Stephen Boyd +Cc: Amit Pundir +Signed-off-by: Greg Kroah-Hartman + +--- + 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; + }