linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] spi: imx: Do not print an error when PIO is used
@ 2020-08-18 22:35 Fabio Estevam
  2020-08-18 22:35 ` [PATCH 2/2] spi: imx: Remove unneeded probe message Fabio Estevam
  2020-08-19 12:15 ` [PATCH 1/2] spi: imx: Do not print an error when PIO is used Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2020-08-18 22:35 UTC (permalink / raw)
  To: broonie; +Cc: linux-spi, Fabio Estevam

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 <festevam@gmail.com>
---
 drivers/spi/spi-imx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c
index fdc25f549378..a06679ab64f9 100644
--- a/drivers/spi/spi-imx.c
+++ b/drivers/spi/spi-imx.c
@@ -1693,7 +1693,7 @@ static int spi_imx_probe(struct platform_device *pdev)
 			goto out_clk_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);
 	}
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-08-19 12:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-18 22:35 [PATCH 1/2] spi: imx: Do not print an error when PIO is used Fabio Estevam
2020-08-18 22:35 ` [PATCH 2/2] spi: imx: Remove unneeded probe message Fabio Estevam
2020-08-19 12:03   ` Mark Brown
2020-08-19 12:15 ` [PATCH 1/2] spi: imx: Do not print an error when PIO is used Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).