* [PATCH] clk: imx: clk-imx6ul: Use anatop_base pointer for consistency
@ 2017-03-03 9:47 Robin van der Gracht
2017-03-06 7:12 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Robin van der Gracht @ 2017-03-03 9:47 UTC (permalink / raw)
To: Sascha Hauer; +Cc: barebox, Robin van der Gracht
The anatop_base pointer was unused, but instead of removing it, assign
and use it for readability like clk-imx6 and clk-imx6sx do.
Signed-off-by: Robin van der Gracht <robin@protonic.nl>
---
drivers/clk/imx/clk-imx6ul.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/clk/imx/clk-imx6ul.c b/drivers/clk/imx/clk-imx6ul.c
index 0ca0652..f28660d 100644
--- a/drivers/clk/imx/clk-imx6ul.c
+++ b/drivers/clk/imx/clk-imx6ul.c
@@ -91,6 +91,7 @@ static int imx6_ccm_probe(struct device_d *dev)
int i;
struct device_node *ccm_node = dev->device_node;
+ anatop_base = IOMEM(MX6_ANATOP_BASE_ADDR);
iores = dev_request_mem_resource(dev, 0);
if (IS_ERR(iores))
return PTR_ERR(iores);
@@ -100,8 +101,6 @@ static int imx6_ccm_probe(struct device_d *dev)
clks[IMX6UL_CLK_DUMMY] = clk_fixed("dummy", 0);
- base = IOMEM(MX6_ANATOP_BASE_ADDR);
-
clks[IMX6UL_PLL1_BYPASS_SRC] = imx_clk_mux("pll1_bypass_src", base + 0x00, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
clks[IMX6UL_PLL2_BYPASS_SRC] = imx_clk_mux("pll2_bypass_src", base + 0x30, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
clks[IMX6UL_PLL3_BYPASS_SRC] = imx_clk_mux("pll3_bypass_src", base + 0x10, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
--
2.9.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] clk: imx: clk-imx6ul: Use anatop_base pointer for consistency
2017-03-03 9:47 [PATCH] clk: imx: clk-imx6ul: Use anatop_base pointer for consistency Robin van der Gracht
@ 2017-03-06 7:12 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2017-03-06 7:12 UTC (permalink / raw)
To: Robin van der Gracht; +Cc: barebox
On Fri, Mar 03, 2017 at 10:47:49AM +0100, Robin van der Gracht wrote:
> The anatop_base pointer was unused, but instead of removing it, assign
> and use it for readability like clk-imx6 and clk-imx6sx do.
>
> Signed-off-by: Robin van der Gracht <robin@protonic.nl>
> ---
> drivers/clk/imx/clk-imx6ul.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
Applied, thanks
Sascha
>
> diff --git a/drivers/clk/imx/clk-imx6ul.c b/drivers/clk/imx/clk-imx6ul.c
> index 0ca0652..f28660d 100644
> --- a/drivers/clk/imx/clk-imx6ul.c
> +++ b/drivers/clk/imx/clk-imx6ul.c
> @@ -91,6 +91,7 @@ static int imx6_ccm_probe(struct device_d *dev)
> int i;
> struct device_node *ccm_node = dev->device_node;
>
> + anatop_base = IOMEM(MX6_ANATOP_BASE_ADDR);
> iores = dev_request_mem_resource(dev, 0);
> if (IS_ERR(iores))
> return PTR_ERR(iores);
> @@ -100,8 +101,6 @@ static int imx6_ccm_probe(struct device_d *dev)
>
> clks[IMX6UL_CLK_DUMMY] = clk_fixed("dummy", 0);
>
> - base = IOMEM(MX6_ANATOP_BASE_ADDR);
> -
> clks[IMX6UL_PLL1_BYPASS_SRC] = imx_clk_mux("pll1_bypass_src", base + 0x00, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
> clks[IMX6UL_PLL2_BYPASS_SRC] = imx_clk_mux("pll2_bypass_src", base + 0x30, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
> clks[IMX6UL_PLL3_BYPASS_SRC] = imx_clk_mux("pll3_bypass_src", base + 0x10, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels));
> --
> 2.9.3
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-03-06 7:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-03 9:47 [PATCH] clk: imx: clk-imx6ul: Use anatop_base pointer for consistency Robin van der Gracht
2017-03-06 7:12 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox