projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
582c97f
)
spi: spi-ti-qspi: Fix error handling
author
Christophe JAILLET
<christophe.jaillet@wanadoo.fr>
Sat, 18 Feb 2017 09:42:02 +0000
(10:42 +0100)
committer
Mark Brown
<broonie@kernel.org>
Sun, 19 Feb 2017 16:11:56 +0000
(16:11 +0000)
'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>
drivers/spi/spi-ti-qspi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/spi/spi-ti-qspi.c
b/drivers/spi/spi-ti-qspi.c
index ec6fb09e2e1711f7adfbe079559a89f1a9cd343d..0fefa6423ff46f455c032d9294cab20b88e358b8 100644
(file)
--- a/
drivers/spi/spi-ti-qspi.c
+++ b/
drivers/spi/spi-ti-qspi.c
@@
-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;
}