Commit 04d8be05 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Mauro Carvalho Chehab

[media] dvb-frontends: 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: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 38dcdca3
...@@ -125,7 +125,6 @@ MODULE_DEVICE_TABLE(i2c, a8293_id_table); ...@@ -125,7 +125,6 @@ MODULE_DEVICE_TABLE(i2c, a8293_id_table);
static struct i2c_driver a8293_driver = { static struct i2c_driver a8293_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "a8293", .name = "a8293",
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
......
...@@ -1387,7 +1387,6 @@ MODULE_DEVICE_TABLE(i2c, af9033_id_table); ...@@ -1387,7 +1387,6 @@ MODULE_DEVICE_TABLE(i2c, af9033_id_table);
static struct i2c_driver af9033_driver = { static struct i2c_driver af9033_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "af9033", .name = "af9033",
}, },
.probe = af9033_probe, .probe = af9033_probe,
......
...@@ -820,7 +820,6 @@ MODULE_DEVICE_TABLE(i2c, au8522_id); ...@@ -820,7 +820,6 @@ MODULE_DEVICE_TABLE(i2c, au8522_id);
static struct i2c_driver au8522_driver = { static struct i2c_driver au8522_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "au8522", .name = "au8522",
}, },
.probe = au8522_probe, .probe = au8522_probe,
......
...@@ -1495,7 +1495,6 @@ MODULE_DEVICE_TABLE(i2c, m88ds3103_id_table); ...@@ -1495,7 +1495,6 @@ MODULE_DEVICE_TABLE(i2c, m88ds3103_id_table);
static struct i2c_driver m88ds3103_driver = { static struct i2c_driver m88ds3103_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "m88ds3103", .name = "m88ds3103",
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
......
...@@ -915,7 +915,6 @@ MODULE_DEVICE_TABLE(i2c, rtl2830_id_table); ...@@ -915,7 +915,6 @@ MODULE_DEVICE_TABLE(i2c, rtl2830_id_table);
static struct i2c_driver rtl2830_driver = { static struct i2c_driver rtl2830_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "rtl2830", .name = "rtl2830",
}, },
.probe = rtl2830_probe, .probe = rtl2830_probe,
......
...@@ -1319,7 +1319,6 @@ MODULE_DEVICE_TABLE(i2c, rtl2832_id_table); ...@@ -1319,7 +1319,6 @@ MODULE_DEVICE_TABLE(i2c, rtl2832_id_table);
static struct i2c_driver rtl2832_driver = { static struct i2c_driver rtl2832_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "rtl2832", .name = "rtl2832",
}, },
.probe = rtl2832_probe, .probe = rtl2832_probe,
......
...@@ -757,7 +757,6 @@ MODULE_DEVICE_TABLE(i2c, si2168_id_table); ...@@ -757,7 +757,6 @@ MODULE_DEVICE_TABLE(i2c, si2168_id_table);
static struct i2c_driver si2168_driver = { static struct i2c_driver si2168_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "si2168", .name = "si2168",
}, },
.probe = si2168_probe, .probe = si2168_probe,
......
...@@ -426,7 +426,6 @@ MODULE_DEVICE_TABLE(i2c, sp2_id); ...@@ -426,7 +426,6 @@ MODULE_DEVICE_TABLE(i2c, sp2_id);
static struct i2c_driver sp2_driver = { static struct i2c_driver sp2_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "sp2", .name = "sp2",
}, },
.probe = sp2_probe, .probe = sp2_probe,
......
...@@ -1251,7 +1251,6 @@ MODULE_DEVICE_TABLE(i2c, tda10071_id_table); ...@@ -1251,7 +1251,6 @@ MODULE_DEVICE_TABLE(i2c, tda10071_id_table);
static struct i2c_driver tda10071_driver = { static struct i2c_driver tda10071_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "tda10071", .name = "tda10071",
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
......
...@@ -726,7 +726,6 @@ MODULE_DEVICE_TABLE(i2c, ts2020_id_table); ...@@ -726,7 +726,6 @@ MODULE_DEVICE_TABLE(i2c, ts2020_id_table);
static struct i2c_driver ts2020_driver = { static struct i2c_driver ts2020_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "ts2020", .name = "ts2020",
}, },
.probe = ts2020_probe, .probe = ts2020_probe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment