From mboxrd@z Thu Jan 1 00:00:00 1970 From: Krzysztof Kozlowski Subject: Re: [PATCH 4/4] clk: samsung: exynos7: correct nr_clk_ids for fsys1 Date: Tue, 25 Aug 2015 16:18:02 +0900 Message-ID: <55DC16AA.9030900@samsung.com> References: <1440414356-1805-1-git-send-email-alim.akhtar@samsung.com> <1440414356-1805-5-git-send-email-alim.akhtar@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: Received: from mailout2.w1.samsung.com ([210.118.77.12]:64461 "EHLO mailout2.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751258AbbHYHSI (ORCPT ); Tue, 25 Aug 2015 03:18:08 -0400 Received: from eucpsbgm2.samsung.com (unknown [203.254.199.245]) by mailout2.w1.samsung.com (Oracle Communications Messaging Server 7.0.5.31.0 64bit (built May 5 2014)) with ESMTP id <0NTM00L8GMY50F20@mailout2.w1.samsung.com> for linux-samsung-soc@vger.kernel.org; Tue, 25 Aug 2015 08:18:05 +0100 (BST) In-reply-to: <1440414356-1805-5-git-send-email-alim.akhtar@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: Alim Akhtar , linux-samsung-soc@vger.kernel.org Cc: s.nawrocki@samsung.com, tomasz.figa@gmail.com, kgene@kernel.org, mturquette@baylibre.com, amit.daniel@samsung.com On 24.08.2015 20:05, Alim Akhtar wrote: > nr_clk_ids for FSYS1 block is wrongly set as TOP1 block, > this patch correct the same. s/correct the same/corrects it/ Reviewed-by: Krzysztof Kozlowski Best regards, Krzysztof > > Signed-off-by: Alim Akhtar > --- > drivers/clk/samsung/clk-exynos7.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/clk/samsung/clk-exynos7.c b/drivers/clk/samsung/clk-exynos7.c > index 2799568..0d7bb7c 100644 > --- a/drivers/clk/samsung/clk-exynos7.c > +++ b/drivers/clk/samsung/clk-exynos7.c > @@ -938,7 +938,7 @@ static struct samsung_cmu_info fsys1_cmu_info __initdata = { > .nr_mux_clks = ARRAY_SIZE(fsys1_mux_clks), > .gate_clks = fsys1_gate_clks, > .nr_gate_clks = ARRAY_SIZE(fsys1_gate_clks), > - .nr_clk_ids = TOP1_NR_CLK, > + .nr_clk_ids = FSYS1_NR_CLK, > .clk_regs = fsys1_clk_regs, > .nr_clk_regs = ARRAY_SIZE(fsys1_clk_regs), > }; >