diff options
author | Marek Vasut <marex@denx.de> | 2025-03-23 16:58:34 +0100 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-03-24 08:51:34 -0300 |
commit | eca4e5e01394c374b2f44d48efe3dc99d185554a (patch) | |
tree | d8c123cb0f5daa4358f4bc1021933d0f8e64e6b9 /drivers/clk/imx/clk-imx93.c | |
parent | 3070d30df12f7b17551a51942324cd86332b0cbe (diff) |
clk: imx: Pass struct udevice into imx_clk_mux*()
Pass struct udevice * into imx_clk_mux*() functions, so the
clock core would have access to parent struct udevice *.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/clk/imx/clk-imx93.c')
-rw-r--r-- | drivers/clk/imx/clk-imx93.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-imx93.c b/drivers/clk/imx/clk-imx93.c index b31e57a4a01..0caec91fd9a 100644 --- a/drivers/clk/imx/clk-imx93.c +++ b/drivers/clk/imx/clk-imx93.c @@ -338,7 +338,7 @@ static int imx93_clk_probe(struct udevice *dev) } clk_dm(IMX93_CLK_A55_SEL, - imx_clk_mux2("a55_sel", base + 0x4820, 0, 1, + imx_clk_mux2(dev, "a55_sel", base + 0x4820, 0, 1, a55_core_sels, ARRAY_SIZE(a55_core_sels))); return 0; |