diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-10-03 19:37:58 -0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-10-07 15:03:08 +0100 |
commit | ce078af76faffc5353256ce487dbd85a6f1ad3a4 (patch) | |
tree | e9a176b9584a3bfbc14aaf562ca959fd090056c1 /drivers/dma/imx-sdma.c | |
parent | 47fac2415db653a79e005d4fa25948d3667b8e02 (diff) | |
download | linux-ce078af76faffc5353256ce487dbd85a6f1ad3a4.tar.bz2 |
dmaengine: imx-sdma: Move message level to debug
Since commit d078cd1b4185 ("dmaengine: imx-sdma: Add imx6sx platform
support") we get this message on every boot on mx6q:
imx-sdma 20ec000.sdma: no event needs to be remapped
, which is not very helpful.
Move the message to debug level instead.
Cc: Zidan Wang <zidan.wang@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/imx-sdma.c')
-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 9d375bc7590a..b34b0a6d0cac 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c @@ -1478,7 +1478,7 @@ static int __init sdma_event_remap(struct sdma_engine *sdma) event_remap = of_find_property(np, propname, NULL); num_map = event_remap ? (event_remap->length / sizeof(u32)) : 0; if (!num_map) { - dev_warn(sdma->dev, "no event needs to be remapped\n"); + dev_dbg(sdma->dev, "no event needs to be remapped\n"); goto out; } else if (num_map % EVENT_REMAP_CELLS) { dev_err(sdma->dev, "the property %s must modulo %d\n", |