diff options
| author | Fabio Estevam <[email protected]> | 2020-08-18 19:35:18 -0300 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2020-08-19 13:14:19 +0100 |
| commit | 0ec0da744bbb11ebb49790e991171a13bf114f9f (patch) | |
| tree | ec50aaf256a3f4ab1f2a90772f37b70509ee9811 | |
| parent | 485be87ac1d570b0c123820b3c2ccf365b2f841a (diff) | |
spi: imx: Do not print an error when PIO is used
There are cases that DMA is not used and the driver gracefully
falls back to PIO mode.
Do not treat it like an error message and move it to debug level instead.
Signed-off-by: Fabio Estevam <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/spi/spi-imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c index 38a5f1304cec..96ef297760fc 100644 --- a/drivers/spi/spi-imx.c +++ b/drivers/spi/spi-imx.c @@ -1695,7 +1695,7 @@ static int spi_imx_probe(struct platform_device *pdev) goto out_runtime_pm_put; if (ret < 0) - dev_err(&pdev->dev, "dma setup error %d, use pio\n", + dev_dbg(&pdev->dev, "dma setup error %d, use pio\n", ret); } |