diff mbox

dma: fix platform_no_drv_owner.cocci warnings

Message ID 20160823121804.GA80500@lkp-sb04 (mailing list archive)
State Not Applicable
Headers show

Commit Message

kernel test robot Aug. 23, 2016, 12:18 p.m. UTC
drivers/dma/qoriq-qdma.c:879:3-8: No need to set .owner here. The core will do it.

 Remove .owner field if calls are used which set it automatically

Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci

CC: Yuan Yao <yao.yuan@nxp.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 qoriq-qdma.c |    1 -
 1 file changed, 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe dmaengine" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- a/drivers/dma/qoriq-qdma.c
+++ b/drivers/dma/qoriq-qdma.c
@@ -876,7 +876,6 @@  MODULE_DEVICE_TABLE(of, fsl_qdma_dt_ids)
 static struct platform_driver fsl_qdma_driver = {
 	.driver		= {
 		.name	= "fsl-qdma",
-		.owner  = THIS_MODULE,
 		.of_match_table = fsl_qdma_dt_ids,
 	},
 	.probe          = fsl_qdma_probe,