From: kbuild test robot Date: Wed, 1 Mar 2017 22:16:43 +0000 (+0000) Subject: staging/atomisp: fix platform_no_drv_owner.cocci warnings X-Git-Tag: v4.12-rc1~84^2~787 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d6dcdefa54a27822b9aa48f0351183a1b286d61;p=thirdparty%2Flinux.git staging/atomisp: fix platform_no_drv_owner.cocci warnings drivers/staging/media/atomisp/i2c/ov2722.c:1352: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 Signed-off-by: Fengguang Wu Signed-off-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/media/atomisp/i2c/ov2722.c b/drivers/staging/media/atomisp/i2c/ov2722.c index ec4938d670cc0..9e0d82bb8b501 100644 --- a/drivers/staging/media/atomisp/i2c/ov2722.c +++ b/drivers/staging/media/atomisp/i2c/ov2722.c @@ -1349,7 +1349,6 @@ MODULE_DEVICE_TABLE(acpi, ov2722_acpi_match); static struct i2c_driver ov2722_driver = { .driver = { - .owner = THIS_MODULE, .name = OV2722_NAME, .acpi_match_table = ACPI_PTR(ov2722_acpi_match), },