diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2018-09-12 15:11:30 +0200 |
---|---|---|
committer | Lucas Stach <l.stach@pengutronix.de> | 2018-11-12 12:16:30 +0100 |
commit | 486852fe03a2f69cd578065b2126e4f70fc41ddd (patch) | |
tree | eb8181d4041715df20addaf2f8f96b3bb419d7f2 | |
parent | 81673a500998d24476bbfc4300ca69f640dd0052 (diff) | |
download | linux-0-day-lst/sdma-firmware.tar.gz linux-0-day-lst/sdma-firmware.tar.xz |
dmaengine: imx-sdma: don't print warning when firmware is absentlst/sdma-firmware
The SDMA firmware is optional and a usable fallabck to the internal
ROM firmware is present in the driver. There is already a message
printed informing the user that the internal firmware is used, so
there is no need to print a scary warning for what is normal operation
on most systems.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
-rw-r--r-- | drivers/dma/imx-sdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index b4ec2d20e661..c2e7819cecb8 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c @@ -1784,7 +1784,7 @@ static int sdma_get_firmware(struct sdma_engine *sdma, { int ret; - ret = request_firmware_nowait(THIS_MODULE, + ret = request_firmware_nowait_nowarn(THIS_MODULE, FW_ACTION_HOTPLUG, fw_name, sdma->dev, GFP_KERNEL, sdma, sdma_load_firmware); |