Commit 1aa6af5f authored by Anson Huang's avatar Anson Huang Committed by Shawn Guo
Browse files

clk: imx8mq: Use devm_platform_ioremap_resource() instead of of_iomap()



i.MX8MQ clock driver uses platform driver model, better to use
devm_platform_ioremap_resource() instead of of_iomap() to get
IO base.

Signed-off-by: default avatarAnson Huang <Anson.Huang@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 883cd3c9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -360,9 +360,9 @@ static int imx8mq_clocks_probe(struct platform_device *pdev)
	clks[IMX8MQ_SYS2_PLL_1000M] = imx_clk_fixed_factor("sys2_pll_1000m", "sys2_pll_out", 1, 1);

	np = dev->of_node;
	base = of_iomap(np, 0);
	if (WARN_ON(!base))
		return -ENOMEM;
	base = devm_platform_ioremap_resource(pdev, 0);
	if (WARN_ON(IS_ERR(base)))
		return PTR_ERR(base);

	/* CORE */
	clks[IMX8MQ_CLK_A53_SRC] = imx_clk_mux2("arm_a53_src", base + 0x8000, 24, 3, imx8mq_a53_sels, ARRAY_SIZE(imx8mq_a53_sels));