Re: [U-Boot] [PATCH 05/14] spi: add common fdt SPI driver interface

2013-02-14 Thread Allen Martin
On Wed, Feb 13, 2013 at 02:40:29PM -0800, Stephen Warren wrote: On 02/12/2013 08:23 PM, Allen Martin wrote: Add a common interface to fdt based SPI drivers. Each driver is represented by a table entry in fdt_spi_drivers[]. If there are multiple SPI drivers in the table, the first driver

Re: [U-Boot] [PATCH 05/14] spi: add common fdt SPI driver interface

2013-02-14 Thread Stephen Warren
On 02/14/2013 01:07 PM, Allen Martin wrote: On Wed, Feb 13, 2013 at 02:40:29PM -0800, Stephen Warren wrote: On 02/12/2013 08:23 PM, Allen Martin wrote: Add a common interface to fdt based SPI drivers. Each driver is represented by a table entry in fdt_spi_drivers[]. If there are multiple

Re: [U-Boot] [PATCH 05/14] spi: add common fdt SPI driver interface

2013-02-14 Thread Allen Martin
On Thu, Feb 14, 2013 at 12:21:34PM -0800, Stephen Warren wrote: On 02/14/2013 01:07 PM, Allen Martin wrote: On Wed, Feb 13, 2013 at 02:40:29PM -0800, Stephen Warren wrote: On 02/12/2013 08:23 PM, Allen Martin wrote: Add a common interface to fdt based SPI drivers. Each driver is

Re: [U-Boot] [PATCH 05/14] spi: add common fdt SPI driver interface

2013-02-13 Thread Stephen Warren
On 02/12/2013 08:23 PM, Allen Martin wrote: Add a common interface to fdt based SPI drivers. Each driver is represented by a table entry in fdt_spi_drivers[]. If there are multiple SPI drivers in the table, the first driver to return success from spi_init() will be registered as the SPI

[U-Boot] [PATCH 05/14] spi: add common fdt SPI driver interface

2013-02-12 Thread Allen Martin
Add a common interface to fdt based SPI drivers. Each driver is represented by a table entry in fdt_spi_drivers[]. If there are multiple SPI drivers in the table, the first driver to return success from spi_init() will be registered as the SPI driver. Signed-off-by: Allen Martin