mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
mmc_spi: add a status check for spi_sync_locked
In case spi_sync_locked fails, the fix reports the error and returns the error code upstream. Signed-off-by: Kangjie Lu <kjlu@umn.edu> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
1f1929f3f2
commit
611025983b
@ -819,6 +819,10 @@ mmc_spi_readblock(struct mmc_spi_host *host, struct spi_transfer *t,
|
|||||||
}
|
}
|
||||||
|
|
||||||
status = spi_sync_locked(spi, &host->m);
|
status = spi_sync_locked(spi, &host->m);
|
||||||
|
if (status < 0) {
|
||||||
|
dev_dbg(&spi->dev, "read error %d\n", status);
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
if (host->dma_dev) {
|
if (host->dma_dev) {
|
||||||
dma_sync_single_for_cpu(host->dma_dev,
|
dma_sync_single_for_cpu(host->dma_dev,
|
||||||
|
Loading…
Reference in New Issue
Block a user