Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1657177 > unrolled thread

[PATCH] clk: at91: fix clk-generated compilation

Started byAlexandre Belloni <alexandre.belloni@free-electrons.com>
First post2017-06-05 00:10 +0200
Last post2017-06-05 22:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] clk: at91: fix clk-generated compilation Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2017-06-05 00:10 +0200
    Re: [PATCH] clk: at91: fix clk-generated compilation Stephen Boyd <sboyd@codeaurora.org> - 2017-06-05 22:00 +0200

#1657177 — [PATCH] clk: at91: fix clk-generated compilation

FromAlexandre Belloni <alexandre.belloni@free-electrons.com>
Date2017-06-05 00:10 +0200
Subject[PATCH] clk: at91: fix clk-generated compilation
Message-ID<tOLSF-2B9-1@gated-at.bofh.it>
Fix missing }

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---

When taken alone clk: at91: fix clk-generated parenting, didn't compile
properly. This was actually fixed by the next patch in the series (hence, it was
compiling and working locally. Sorry about that.

Feel free to squash this fix.

 drivers/clk/at91/clk-generated.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/at91/clk-generated.c b/drivers/clk/at91/clk-generated.c
index 70474bd97a10..07c8f701e51c 100644
--- a/drivers/clk/at91/clk-generated.c
+++ b/drivers/clk/at91/clk-generated.c
@@ -266,6 +266,7 @@ at91_clk_register_generated(struct regmap *regmap, spinlock_t *lock,
 	if (ret) {
 		kfree(gck);
 		hw = ERR_PTR(ret);
+	}
 
 	return hw;
 }
-- 
2.11.0

[toc] | [next] | [standalone]


#1658116

FromStephen Boyd <sboyd@codeaurora.org>
Date2017-06-05 22:00 +0200
Message-ID<tP6kp-7bv-5@gated-at.bofh.it>
In reply to#1657177
On 06/05, Alexandre Belloni wrote:
> Fix missing }
> 
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web