mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 05:30:56 +07:00
spi: spi-ti-qspi: Fix error handling
'dma_request_chan_by_mask()' can not return NULL. Try to keep the logic in 'no_dma:' by resetting 'qspi->rx_chan' in case of error. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
582c97f686
commit
30fb27239f
@ -714,9 +714,10 @@ static int ti_qspi_probe(struct platform_device *pdev)
|
||||
dma_cap_set(DMA_MEMCPY, mask);
|
||||
|
||||
qspi->rx_chan = dma_request_chan_by_mask(&mask);
|
||||
if (!qspi->rx_chan) {
|
||||
if (IS_ERR(qspi->rx_chan)) {
|
||||
dev_err(qspi->dev,
|
||||
"No Rx DMA available, trying mmap mode\n");
|
||||
qspi->rx_chan = NULL;
|
||||
ret = 0;
|
||||
goto no_dma;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user