diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-10 09:19:46 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-08-11 19:01:08 +0300 |
commit | f77658bda96431801dcd078765ba92adcd02aaaa (patch) | |
tree | 24ea3bcd477eff5781b75b5ccc32f110d1b06929 /drivers/media/radio/radio-tea5764.c | |
parent | dfadaccabf93362cda7232eb9684b2eae7f2abf9 (diff) | |
download | linux-f77658bda96431801dcd078765ba92adcd02aaaa.tar.xz |
[media] radio: Drop owner assignment from i2c_driver
i2c_driver does not need to set an owner because i2c_register_driver()
will set it.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/radio/radio-tea5764.c')
-rw-r--r-- | drivers/media/radio/radio-tea5764.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-tea5764.c b/drivers/media/radio/radio-tea5764.c index cc3990111411..a1930b300c06 100644 --- a/drivers/media/radio/radio-tea5764.c +++ b/drivers/media/radio/radio-tea5764.c @@ -526,7 +526,6 @@ MODULE_DEVICE_TABLE(i2c, tea5764_id); static struct i2c_driver tea5764_i2c_driver = { .driver = { .name = "radio-tea5764", - .owner = THIS_MODULE, }, .probe = tea5764_i2c_probe, .remove = tea5764_i2c_remove, |