Re: [U-Boot] [PATCH] serial: ns16550: Link in the DM driver when when using platdata

2017-04-13 Thread Simon Glass
On 31 March 2017 at 22:23, Simon Glass wrote: > On 27 March 2017 at 13:54, Alexandru Gagniuc wrote: >> Do not condition the compilation of the U_BOOT_DRIVER by !OF_PLATDATA. >> This is inconsistent with the majority of other drivers. This also >> blocks

Re: [U-Boot] [PATCH] serial: ns16550: Link in the DM driver when when using platdata

2017-03-31 Thread Simon Glass
On 27 March 2017 at 13:54, Alexandru Gagniuc wrote: > Do not condition the compilation of the U_BOOT_DRIVER by !OF_PLATDATA. > This is inconsistent with the majority of other drivers. This also > blocks OF_PLATDATA boards with an 16550-compatible serial from using > serial in

[U-Boot] [PATCH] serial: ns16550: Link in the DM driver when when using platdata

2017-03-27 Thread Alexandru Gagniuc
Do not condition the compilation of the U_BOOT_DRIVER by !OF_PLATDATA. This is inconsistent with the majority of other drivers. This also blocks OF_PLATDATA boards with an 16550-compatible serial from using serial in SPL. Signed-off-by: Alexandru Gagniuc ---