projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce078af
)
dmaengine: imx-sdma: Remove unneeded dev_info()
author
Fabio Estevam
<fabio.estevam@freescale.com>
Sat, 3 Oct 2015 22:37:59 +0000
(19:37 -0300)
committer
Vinod Koul
<vinod.koul@intel.com>
Wed, 7 Oct 2015 14:03:08 +0000
(15:03 +0100)
There is no need to print that the driver has been initialized
or removed, so remove such messages.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/imx-sdma.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/imx-sdma.c
b/drivers/dma/imx-sdma.c
index b34b0a6d0cacd2d7498c46e9b2f316fd0c5f1826..7058d58ba5887b6711bf2fedef3cf70c19db83e5 100644
(file)
--- a/
drivers/dma/imx-sdma.c
+++ b/
drivers/dma/imx-sdma.c
@@
-1826,8
+1826,6
@@
static int sdma_probe(struct platform_device *pdev)
of_node_put(spba_bus);
}
- dev_info(sdma->dev, "initialized\n");
-
return 0;
err_register:
@@
-1852,7
+1850,6
@@
static int sdma_remove(struct platform_device *pdev)
}
platform_set_drvdata(pdev, NULL);
- dev_info(&pdev->dev, "Removed...\n");
return 0;
}