diff mbox

acpi: fix platform_no_drv_owner.cocci warnings

Message ID 20160125232156.GA45057@lkp-ib04 (mailing list archive)
State Not Applicable, archived
Delegated to: Andy Gross
Headers show

Commit Message

kernel test robot Jan. 25, 2016, 11:21 p.m. UTC
drivers/acpi/evged.c:152: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>
---

 evged.c |    1 -
 1 file changed, 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" 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/acpi/evged.c
+++ b/drivers/acpi/evged.c
@@ -149,7 +149,6 @@  static struct platform_driver ged_driver
 	.probe = ged_probe,
 	.driver = {
 		.name = MODULE_NAME,
-		.owner = THIS_MODULE,
 		.acpi_match_table = ACPI_PTR(ged_acpi_ids),
 	},
 };