mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
spi: sirf: fix 'cmd_transfer' function typos
unify 'cmd_transfer' like 'pio_transfer' and 'dma_transfer' as void function, and also change left_rx_word according to transfer result. Signed-off-by: Qipan Li <Qipan.Li@csr.com> Signed-off-by: Barry Song <Baohua.Song@csr.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7850cdfc80
commit
0021d97334
@ -303,7 +303,7 @@ static void spi_sirfsoc_dma_fini_callback(void *data)
|
||||
complete(dma_complete);
|
||||
}
|
||||
|
||||
static int spi_sirfsoc_cmd_transfer(struct spi_device *spi,
|
||||
static void spi_sirfsoc_cmd_transfer(struct spi_device *spi,
|
||||
struct spi_transfer *t)
|
||||
{
|
||||
struct sirfsoc_spi *sspi;
|
||||
@ -325,10 +325,9 @@ static int spi_sirfsoc_cmd_transfer(struct spi_device *spi,
|
||||
sspi->base + SIRFSOC_SPI_TX_RX_EN);
|
||||
if (wait_for_completion_timeout(&sspi->tx_done, timeout) == 0) {
|
||||
dev_err(&spi->dev, "cmd transfer timeout\n");
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
return t->len;
|
||||
sspi->left_rx_word -= t->len;
|
||||
}
|
||||
|
||||
static void spi_sirfsoc_dma_transfer(struct spi_device *spi,
|
||||
|
Loading…
Reference in New Issue
Block a user