Re: [U-Boot] [PATCH v2 07/17] dm: spi: Use device_bind_driver() instead of our own function

2014-11-23 Thread Simon Glass
On 17 November 2014 at 07:29, Heiko Schocher h...@denx.de wrote: Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: The SPI function does the same thing, so we may as well just use the new generic function. The 'cs' parameter was not actually used, so can be dropped. Signed-off-by:

Re: [U-Boot] [PATCH v2 07/17] dm: spi: Use device_bind_driver() instead of our own function

2014-11-16 Thread Heiko Schocher
Hello Simon, Am 11.11.2014 18:46, schrieb Simon Glass: The SPI function does the same thing, so we may as well just use the new generic function. The 'cs' parameter was not actually used, so can be dropped. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add new patches to

[U-Boot] [PATCH v2 07/17] dm: spi: Use device_bind_driver() instead of our own function

2014-11-11 Thread Simon Glass
The SPI function does the same thing, so we may as well just use the new generic function. The 'cs' parameter was not actually used, so can be dropped. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add new patches to adjust SPI to use device_bind_driver()

Re: [U-Boot] [PATCH v2 07/17] dm: spi: Use device_bind_driver() instead of our own function

2014-11-11 Thread Jagan Teki
On 11 November 2014 23:16, Simon Glass s...@chromium.org wrote: The SPI function does the same thing, so we may as well just use the new generic function. The 'cs' parameter was not actually used, so can be dropped. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: - Add new