diff mbox series

clk: ti: Use of_address_to_resource()

Message ID 20230319163217.226144-1-robh@kernel.org (mailing list archive)
State Accepted, archived
Headers show
Series clk: ti: Use of_address_to_resource() | expand

Commit Message

Rob Herring (Arm) March 19, 2023, 4:32 p.m. UTC
Replace of_get_address() and of_translate_address() calls with single
call to of_address_to_resource().

Signed-off-by: Rob Herring <robh@kernel.org>
---
 drivers/clk/ti/clkctrl.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Tony Lindgren March 27, 2023, 7:29 a.m. UTC | #1
* Rob Herring <robh@kernel.org> [230319 18:32]:
> Replace of_get_address() and of_translate_address() calls with single
> call to of_address_to_resource().

Applying into omap-for-v6.4/ti-sysc thanks.

Tony
Tony Lindgren March 27, 2023, 7:31 a.m. UTC | #2
* Tony Lindgren <tony@atomide.com> [230327 10:29]:
> * Rob Herring <robh@kernel.org> [230319 18:32]:
> > Replace of_get_address() and of_translate_address() calls with single
> > call to of_address_to_resource().
> 
> Applying into omap-for-v6.4/ti-sysc thanks.

Oops, sorry, was not planning on applying clock patches :) Up to Stephen
to apply it.

Reviewed-by: Tony Lindgren <tony@atomide.com>
Stephen Boyd March 27, 2023, 4:38 p.m. UTC | #3
Quoting Rob Herring (2023-03-19 09:32:17)
> Replace of_get_address() and of_translate_address() calls with single
> call to of_address_to_resource().
> 
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---

Applied to clk-next
diff mbox series

Patch

diff --git a/drivers/clk/ti/clkctrl.c b/drivers/clk/ti/clkctrl.c
index f73f402ff7de..b6fce916967c 100644
--- a/drivers/clk/ti/clkctrl.c
+++ b/drivers/clk/ti/clkctrl.c
@@ -512,16 +512,16 @@  static void __init _ti_omap4_clkctrl_setup(struct device_node *node)
 	struct clk_hw_omap *hw;
 	struct clk *clk;
 	struct omap_clkctrl_clk *clkctrl_clk = NULL;
-	const __be32 *addrp;
 	bool legacy_naming;
 	const char *clkctrl_name;
 	u32 addr;
 	int ret;
 	char *c;
 	u16 soc_mask = 0;
+	struct resource res;
 
-	addrp = of_get_address(node, 0, NULL, NULL);
-	addr = (u32)of_translate_address(node, addrp);
+	of_address_to_resource(node, 0, &res);
+	addr = (u32)res.start;
 
 #ifdef CONFIG_ARCH_OMAP4
 	if (of_machine_is_compatible("ti,omap4"))