Re: [U-Boot] [PATCH v4 5/8] arm: serial: Add ability to use pre-initialized UARTs

2015-09-07 Thread Sergei Temerkhanov
On Sat, Aug 22, 2015 at 3:36 AM, Simon Glass wrote: > Hi Serkey, > > On 18 August 2015 at 06:26, Sergey Temerkhanov > wrote: >> On some systems, UART initialization is performed before running U-Boot. >> This commit allows to skip UART re-initializaion on those systems >> >> Signed-off-by: Serge

Re: [U-Boot] [PATCH v4 5/8] arm: serial: Add ability to use pre-initialized UARTs

2015-08-21 Thread Simon Glass
Hi Serkey, On 18 August 2015 at 06:26, Sergey Temerkhanov wrote: > On some systems, UART initialization is performed before running U-Boot. > This commit allows to skip UART re-initializaion on those systems > > Signed-off-by: Sergey Temerkhanov > Signed-off-by: Radha Mohan Chintakuntla > > ---

[U-Boot] [PATCH v4 5/8] arm: serial: Add ability to use pre-initialized UARTs

2015-08-18 Thread Sergey Temerkhanov
On some systems, UART initialization is performed before running U-Boot. This commit allows to skip UART re-initializaion on those systems Signed-off-by: Sergey Temerkhanov Signed-off-by: Radha Mohan Chintakuntla --- Changes in v4: - Fixed build warnings - Moved to DM_SERIAL Changes in v3: -