Re: [U-Boot] [PATCH v2 01/11] spi-mem: Claim SPI bus before spi mem access

2019-01-28 Thread Vignesh R
On 28/01/19 12:24 PM, Jagan Teki wrote: > On Fri, Dec 21, 2018 at 12:08 PM Vignesh R wrote: >> >> It is necessary to call spi_claim_bus() before starting any SPI >> transactions and this restriction would also apply when calling spi-mem >> operationss. Therefore claim and release bus before requ

Re: [U-Boot] [PATCH v2 01/11] spi-mem: Claim SPI bus before spi mem access

2019-01-27 Thread Jagan Teki
On Fri, Dec 21, 2018 at 12:08 PM Vignesh R wrote: > > It is necessary to call spi_claim_bus() before starting any SPI > transactions and this restriction would also apply when calling spi-mem > operationss. Therefore claim and release bus before requesting transfer > via exec_op. > > Signed-off-by

[U-Boot] [PATCH v2 01/11] spi-mem: Claim SPI bus before spi mem access

2018-12-20 Thread Vignesh R
It is necessary to call spi_claim_bus() before starting any SPI transactions and this restriction would also apply when calling spi-mem operationss. Therefore claim and release bus before requesting transfer via exec_op. Signed-off-by: Vignesh R --- drivers/spi/spi-mem.c | 6 ++ 1 file chang