diff mbox

dma: fix platform_no_drv_owner.cocci warnings

Message ID 20151030043408.GA80488@cairo (mailing list archive)
State Not Applicable
Headers show

Commit Message

kernel test robot Oct. 30, 2015, 4:34 a.m. UTC
drivers/dma/qcom_hidma_mgmt.c:852: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: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 qcom_hidma_mgmt.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/qcom_hidma_mgmt.c
+++ b/drivers/dma/qcom_hidma_mgmt.c
@@ -849,7 +849,6 @@  static struct platform_driver qcom_hidma
 	.remove = qcom_hidma_mgmt_remove,
 	.driver = {
 		.name = MODULE_NAME,
-		.owner = THIS_MODULE,
 		.of_match_table = of_match_ptr(qcom_hidma_mgmt_match),
 		.acpi_match_table = ACPI_PTR(qcom_hidma_mgmt_acpi_ids),
 	},