Re: [U-Boot] [PATCH v3] cmd: clk: Handle ENODEV from clk_get_rate

2019-03-18 Thread Marek Vasut
On 2/22/19 4:52 PM, Ismael Luceno Cortes wrote: > clk_get_rate may return -ENODEV if the clock isn't valid. > > Also, make the error cases go through a single path. > > Fixes: ff8eee0330a6 ("cmd: clk: Add trivial implementation of clock dump > for DM") > > Signed-off-by: Ismael Luceno >

Re: [U-Boot] [PATCH v3] cmd: clk: Handle ENODEV from clk_get_rate

2019-03-18 Thread Ismael Luceno Cortes
On 22/Feb/2019 16:52, Ismael Luceno wrote: > clk_get_rate may return -ENODEV if the clock isn't valid. > > Also, make the error cases go through a single path. > > Fixes: ff8eee0330a6 ("cmd: clk: Add trivial implementation of clock dump > for DM") > > Signed-off-by: Ismael Luceno >

[U-Boot] [PATCH v3] cmd: clk: Handle ENODEV from clk_get_rate

2019-02-22 Thread Ismael Luceno Cortes
clk_get_rate may return -ENODEV if the clock isn't valid. Also, make the error cases go through a single path. Fixes: ff8eee0330a6 ("cmd: clk: Add trivial implementation of clock dump for DM") Signed-off-by: Ismael Luceno Reviewed-by: Matthias Brugger --- CC: Matthias Brugger