Re: [PATCH 6/6] clk: Add a .get_parent operation

2023-02-20 Thread Simon Glass
Hi Samuel, On Sun, 19 Feb 2023 at 23:00, Samuel Holland wrote: > > This allows clk_get_parent() to work with non-CCF clock drivers. > > Signed-off-by: Samuel Holland > --- > > drivers/clk/clk-uclass.c | 18 -- > include/clk-uclass.h | 2 ++ > 2 files changed, 14 insertions(

Re: [PATCH 6/6] clk: Add a .get_parent operation

2023-02-20 Thread Sean Anderson
On 2/20/23 00:59, Samuel Holland wrote: This allows clk_get_parent() to work with non-CCF clock drivers. Signed-off-by: Samuel Holland --- drivers/clk/clk-uclass.c | 18 -- include/clk-uclass.h | 2 ++ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/dri

[PATCH 6/6] clk: Add a .get_parent operation

2023-02-19 Thread Samuel Holland
This allows clk_get_parent() to work with non-CCF clock drivers. Signed-off-by: Samuel Holland --- drivers/clk/clk-uclass.c | 18 -- include/clk-uclass.h | 2 ++ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/drivers/clk/clk-uclass.c b/drivers/clk/clk-uclas