Replace of_get_address() and of_translate_address() calls with single
call to of_address_to_resource().
Signed-off-by: Rob Herring <[email protected]>
---
drivers/clk/ti/clkctrl.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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"))
--
2.39.2
* Rob Herring <[email protected]> [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 <[email protected]> [230327 10:29]:
> * Rob Herring <[email protected]> [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 <[email protected]>
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 <[email protected]>
> ---
Applied to clk-next