[PATCHv2 2/2] dmaengine: imx-sdma: request firmware with FW_OPT_NO_WARN

From: Sebastian Reichel
Date: Wed Jul 04 2018 - 12:05:22 EST


Request firmware with FW_OPT_NO_WARN. The driver works without the
firmware by using the one supplied in ROM. There is already an info
message, that informs about this.

Signed-off-by: Sebastian Reichel <sebastian.reichel@xxxxxxxxxxxxxxx>
---
drivers/dma/imx-sdma.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index f077992635c2..68f7e5a2092f 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -1599,13 +1599,9 @@ static int sdma_event_remap(struct sdma_engine *sdma)
static int sdma_get_firmware(struct sdma_engine *sdma,
const char *fw_name)
{
- int ret;
-
- ret = request_firmware_nowait(THIS_MODULE,
- FW_ACTION_HOTPLUG, fw_name, sdma->dev,
- GFP_KERNEL, sdma, sdma_load_firmware);
-
- return ret;
+ return request_firmware_nowait_nowarn(THIS_MODULE, FW_ACTION_HOTPLUG,
+ fw_name, sdma->dev, GFP_KERNEL,
+ sdma, sdma_load_firmware);
}

static int sdma_init(struct sdma_engine *sdma)
--
2.18.0