From: Shraddha Barke Date: Mon, 12 Oct 2015 13:14:34 +0000 (+0530) Subject: Staging: most: hdm-i2c: Drop owner assignment from i2c driver X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=514d4d744d5c40aed94c4424a715227698935be9;p=deliverable%2Flinux.git Staging: most: hdm-i2c: Drop owner assignment from i2c driver i2c_driver does not need to set an owner because core will set it Signed-off-by: Shraddha Barke Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/most/hdm-i2c/hdm_i2c.c b/drivers/staging/most/hdm-i2c/hdm_i2c.c index cffea40d09d0..976828164ccd 100644 --- a/drivers/staging/most/hdm-i2c/hdm_i2c.c +++ b/drivers/staging/most/hdm-i2c/hdm_i2c.c @@ -416,7 +416,6 @@ MODULE_DEVICE_TABLE(i2c, i2c_id); static struct i2c_driver i2c_driver = { .driver = { .name = "hdm_i2c", - .owner = THIS_MODULE, }, .probe = i2c_probe, .remove = i2c_remove,