mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-11 07:28:10 +09:00
spi: rockchip: rockchip_spi_prepare_dma return 1 if it is ok
If rockchip_spi_prepare_dma return 0, spi_transfer_one_message won't wait for the dma complete event. Which may cause unknown error. Change-Id: Idf51a737bbd9fa9b9d1ae749636fe524de1cbfa9 Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
This commit is contained in:
@@ -499,7 +499,7 @@ static int rockchip_spi_prepare_dma(struct rockchip_spi *rs)
|
||||
dma_async_issue_pending(rs->dma_tx.ch);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void rockchip_spi_config(struct rockchip_spi *rs)
|
||||
|
||||
Reference in New Issue
Block a user