* [PATCH v5 1/5] clk: samsung: exynos5433: fix typo in imem divider [not found] ` <20190122090232.29194-1-k.konieczny@partner.samsung.com> @ 2019-01-22 9:02 ` Kamil Konieczny 2019-01-22 9:33 ` Greg KH 0 siblings, 1 reply; 3+ messages in thread From: Kamil Konieczny @ 2019-01-22 9:02 UTC (permalink / raw) To: k.konieczny, linux-samsung-soc Cc: linux-clk, Chanwoo Choi, devicetree, Krzysztof Kozlowski, Kukjin Kim, Mark Rutland, Rob Herring, Sylwester Nawrocki, Bartlomiej Zolnierkiewicz, Marek Szyprowski, stable Fix typo in imem clock divider 200 switched with 266. Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Kamil Konieczny <k.konieczny@partner.samsung.com> --- drivers/clk/samsung/clk-exynos5433.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/samsung/clk-exynos5433.c b/drivers/clk/samsung/clk-exynos5433.c index 751e2c4fb65b..ea47f49abc7f 100644 --- a/drivers/clk/samsung/clk-exynos5433.c +++ b/drivers/clk/samsung/clk-exynos5433.c @@ -568,10 +568,10 @@ static const struct samsung_gate_clock top_gate_clks[] __initconst = { GATE(CLK_ACLK_BUS1_400, "aclk_bus1_400", "div_aclk_bus1_400", ENABLE_ACLK_TOP, 25, CLK_IS_CRITICAL | CLK_SET_RATE_PARENT, 0), - GATE(CLK_ACLK_IMEM_200, "aclk_imem_200", "div_aclk_imem_266", + GATE(CLK_ACLK_IMEM_200, "aclk_imem_200", "div_aclk_imem_200", ENABLE_ACLK_TOP, 24, CLK_IS_CRITICAL | CLK_SET_RATE_PARENT, 0), - GATE(CLK_ACLK_IMEM_266, "aclk_imem_266", "div_aclk_imem_200", + GATE(CLK_ACLK_IMEM_266, "aclk_imem_266", "div_aclk_imem_266", ENABLE_ACLK_TOP, 23, CLK_IGNORE_UNUSED | CLK_SET_RATE_PARENT, 0), GATE(CLK_ACLK_PERIC_66, "aclk_peric_66", "div_aclk_peric_66_b", -- 2.20.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v5 1/5] clk: samsung: exynos5433: fix typo in imem divider 2019-01-22 9:02 ` [PATCH v5 1/5] clk: samsung: exynos5433: fix typo in imem divider Kamil Konieczny @ 2019-01-22 9:33 ` Greg KH 2019-01-25 12:41 ` Kamil Konieczny 0 siblings, 1 reply; 3+ messages in thread From: Greg KH @ 2019-01-22 9:33 UTC (permalink / raw) To: Kamil Konieczny Cc: linux-samsung-soc, linux-clk, Chanwoo Choi, devicetree, Krzysztof Kozlowski, Kukjin Kim, Mark Rutland, Rob Herring, Sylwester Nawrocki, Bartlomiej Zolnierkiewicz, Marek Szyprowski, stable On Tue, Jan 22, 2019 at 10:02:28AM +0100, Kamil Konieczny wrote: > Fix typo in imem clock divider 200 switched with 266. > > Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> > Signed-off-by: Kamil Konieczny <k.konieczny@partner.samsung.com> > --- > drivers/clk/samsung/clk-exynos5433.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) <formletter> This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read: https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html for how to do this properly. </formletter> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5 1/5] clk: samsung: exynos5433: fix typo in imem divider 2019-01-22 9:33 ` Greg KH @ 2019-01-25 12:41 ` Kamil Konieczny 0 siblings, 0 replies; 3+ messages in thread From: Kamil Konieczny @ 2019-01-25 12:41 UTC (permalink / raw) To: Greg KH Cc: linux-samsung-soc, linux-clk, Chanwoo Choi, devicetree, Krzysztof Kozlowski, Kukjin Kim, Mark Rutland, Rob Herring, Sylwester Nawrocki, Bartlomiej Zolnierkiewicz, Marek Szyprowski, stable On 22.01.2019 10:33, Greg KH wrote: > On Tue, Jan 22, 2019 at 10:02:28AM +0100, Kamil Konieczny wrote: >> Fix typo in imem clock divider 200 switched with 266. >> >> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> >> Signed-off-by: Kamil Konieczny <k.konieczny@partner.samsung.com> >> --- >> drivers/clk/samsung/clk-exynos5433.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) > > <formletter> > > This is not the correct way to submit patches for inclusion in the > stable kernel tree. Please read: [...] After reconsideration that there are no users of imem clock in old kernels, please drop this patch from stable. -- Best regards, Kamil Konieczny Samsung R&D Institute Poland ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-01-25 12:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20190122090249eucas1p161cfc1364fb8ee76d2d04383935e8f3b@eucas1p1.samsung.com>
[not found] ` <20190122090232.29194-1-k.konieczny@partner.samsung.com>
2019-01-22 9:02 ` [PATCH v5 1/5] clk: samsung: exynos5433: fix typo in imem divider Kamil Konieczny
2019-01-22 9:33 ` Greg KH
2019-01-25 12:41 ` Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).