Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-29 Thread Tom Rini
On Tue, Aug 29, 2023 at 09:18:53AM +0200, Michal Simek wrote: > > > On 8/28/23 17:50, Tom Rini wrote: > > On Mon, Aug 28, 2023 at 12:25:30PM +0200, Michal Simek wrote: > > > > > > > > > On 8/25/23 16:39, Tom Rini wrote: > > > > On Fri, Aug 25, 2023 at 09:15:09AM +0200, Michal Simek wrote: > > >

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-29 Thread Michal Simek
On 8/28/23 17:50, Tom Rini wrote: On Mon, Aug 28, 2023 at 12:25:30PM +0200, Michal Simek wrote: On 8/25/23 16:39, Tom Rini wrote: On Fri, Aug 25, 2023 at 09:15:09AM +0200, Michal Simek wrote: Hi Tom, On 7/11/23 11:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates i

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-28 Thread Tom Rini
On Mon, Aug 28, 2023 at 12:25:30PM +0200, Michal Simek wrote: > > > On 8/25/23 16:39, Tom Rini wrote: > > On Fri, Aug 25, 2023 at 09:15:09AM +0200, Michal Simek wrote: > > > Hi Tom, > > > > > > On 7/11/23 11:51, Ashok Reddy Soma wrote: > > > > There is a chance that assigned-clock-rates is given

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-28 Thread Michal Simek
On 8/25/23 16:39, Tom Rini wrote: On Fri, Aug 25, 2023 at 09:15:09AM +0200, Michal Simek wrote: Hi Tom, On 7/11/23 11:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-25 Thread Tom Rini
On Fri, Aug 25, 2023 at 09:15:09AM +0200, Michal Simek wrote: > Hi Tom, > > On 7/11/23 11:51, Ashok Reddy Soma wrote: > > There is a chance that assigned-clock-rates is given and assigned-clocks > > could be empty. Dont return error in that case, because the probe of the > > corresponding driver w

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-08-25 Thread Michal Simek
Hi Tom, On 7/11/23 11:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the corresponding driver will not be called at all if this fails. Better to continue to look for it and

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-20 Thread Michal Simek
Hi Sean, On 7/11/23 16:55, Michal Simek wrote: On 7/11/23 16:28, Sean Anderson wrote: On 7/11/23 10:20, Michal Simek wrote: Hi Sean, On 7/11/23 15:40, Sean Anderson wrote: On 7/11/23 05:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks co

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-11 Thread Michal Simek
On 7/11/23 16:28, Sean Anderson wrote: On 7/11/23 10:20, Michal Simek wrote: Hi Sean, On 7/11/23 15:40, Sean Anderson wrote: On 7/11/23 05:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, be

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-11 Thread Sean Anderson
On 7/11/23 10:20, Michal Simek wrote: Hi Sean, On 7/11/23 15:40, Sean Anderson wrote: On 7/11/23 05:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the corresponding driver

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-11 Thread Michal Simek
Hi Sean, On 7/11/23 15:40, Sean Anderson wrote: On 7/11/23 05:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the corresponding driver will not be called at all if this fail

Re: [PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-11 Thread Sean Anderson
On 7/11/23 05:51, Ashok Reddy Soma wrote: There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the corresponding driver will not be called at all if this fails. Better to continue to look for it and return 0.

[PATCH] clk: Dont return error when assigned-clocks is empty or missing

2023-07-11 Thread Ashok Reddy Soma
There is a chance that assigned-clock-rates is given and assigned-clocks could be empty. Dont return error in that case, because the probe of the corresponding driver will not be called at all if this fails. Better to continue to look for it and return 0. Signed-off-by: Ashok Reddy Soma --- dri