mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] dma: imx-sdma: Treat firmware messages as warnings instead of erros
@ 2012-03-08 12:26 Fabio Estevam
  2012-03-13 13:13 ` Sascha Hauer
  2012-03-21 10:09 ` Vinod Koul
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2012-03-08 12:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: vinod.koul, kernel, Fabio Estevam

As the SDMA controller can operate without an external firmware being loaded,
treat the firmware related messages as warnings rather than errors.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/dma/imx-sdma.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index c495882..3b7ebd4 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -1389,7 +1389,7 @@ static int __init sdma_probe(struct platform_device *pdev)
 	if (pdata) {
 		ret = sdma_get_firmware(sdma, pdata->fw_name);
 		if (ret)
-			dev_err(&pdev->dev, "failed to get firmware from platform data\n");
+			dev_warn(&pdev->dev, "failed to get firmware from platform data\n");
 	} else {
 		/*
 		 * Because that device tree does not encode ROM script address,
@@ -1399,11 +1399,11 @@ static int __init sdma_probe(struct platform_device *pdev)
 		ret = of_property_read_string(np, "fsl,sdma-ram-script-name",
 					      &fw_name);
 		if (ret)
-			dev_err(&pdev->dev, "failed to get firmware name\n");
+			dev_warn(&pdev->dev, "failed to get firmware name\n");
 		else {
 			ret = sdma_get_firmware(sdma, fw_name);
 			if (ret)
-				dev_err(&pdev->dev, "failed to get firmware from device tree\n");
+				dev_warn(&pdev->dev, "failed to get firmware from device tree\n");
 		}
 	}
 
-- 
1.7.1



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

end of thread, other threads:[~2012-03-21 10:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-08 12:26 [PATCH] dma: imx-sdma: Treat firmware messages as warnings instead of erros Fabio Estevam
2012-03-13 13:13 ` Sascha Hauer
2012-03-21 10:09 ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®