Re: [PATCH v5] atmel/spi: fix missing probe

2011-11-04 Thread Nicolas Ferre
On 11/03/2011 07:16 PM, Jean-Christophe PLAGNIOL-VILLARD : > Commit 940ab889 "drivercore: Add helper macro for platform_driver boilerplate" > converted this driver to use module_platform_driver, but due to the use > of platform_driver_probe(), this resulted in the call to atmel_spi_probe being > lo

[PATCH v5] atmel/spi: fix missing probe

2011-11-03 Thread Jean-Christophe PLAGNIOL-VILLARD
Commit 940ab889 "drivercore: Add helper macro for platform_driver boilerplate" converted this driver to use module_platform_driver, but due to the use of platform_driver_probe(), this resulted in the call to atmel_spi_probe being lost. Place the call to this function into the driver structure. fix