Re: [U-Boot] [PATCH] serial: ns16550: Handle -ENOENT when requesting clock

2016-10-04 Thread Thierry Reding
On Mon, Oct 03, 2016 at 10:23:49AM -0600, Stephen Warren wrote: > On 09/30/2016 02:37 AM, Alexandre Courbot wrote: > > When calling clk_get_by_index(), fall back to the legacy method of > > getting the clock if -ENOENT is returned. > > Tested-by: Stephen Warren Agreed, this

Re: [U-Boot] [PATCH] serial: ns16550: Handle -ENOENT when requesting clock

2016-10-03 Thread Stephen Warren
On 09/30/2016 02:37 AM, Alexandre Courbot wrote: When calling clk_get_by_index(), fall back to the legacy method of getting the clock if -ENOENT is returned. Tested-by: Stephen Warren ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH] serial: ns16550: Handle -ENOENT when requesting clock

2016-09-30 Thread Alexandre Courbot
On 09/30/2016 05:37 PM, Alexandre Courbot wrote: > When calling clk_get_by_index(), fall back to the legacy method of > getting the clock if -ENOENT is returned. Withdrawing this patch as Thierry sent a better version of it. ___ U-Boot mailing list

[U-Boot] [PATCH] serial: ns16550: Handle -ENOENT when requesting clock

2016-09-30 Thread Alexandre Courbot
When calling clk_get_by_index(), fall back to the legacy method of getting the clock if -ENOENT is returned. Signed-off-by: Alexandre Courbot --- drivers/serial/ns16550.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/ns16550.c