diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-07-15 00:21:44 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-07-15 07:50:43 -0400 |
commit | 1c07a4de5baad76585f7ffb86b5b0bc34c33e8a6 (patch) | |
tree | dd93f3bc0ed593b29dbd4eed0c9f554a085adef4 | |
parent | a5e412a99c07382bda3643f9532d2769141efc7d (diff) |
ASoC: drivers: 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: Mark Brown <broonie@kernel.org>
100 files changed, 0 insertions, 100 deletions
diff --git a/sound/soc/codecs/adau1373.c b/sound/soc/codecs/adau1373.c index a43160254929..6c96860f46de 100644 --- a/sound/soc/codecs/adau1373.c +++ b/sound/soc/codecs/adau1373.c | |||
@@ -1534,7 +1534,6 @@ MODULE_DEVICE_TABLE(i2c, adau1373_i2c_id); | |||
1534 | static struct i2c_driver adau1373_i2c_driver = { | 1534 | static struct i2c_driver adau1373_i2c_driver = { |
1535 | .driver = { | 1535 | .driver = { |
1536 | .name = "adau1373", | 1536 | .name = "adau1373", |
1537 | .owner = THIS_MODULE, | ||
1538 | }, | 1537 | }, |
1539 | .probe = adau1373_i2c_probe, | 1538 | .probe = adau1373_i2c_probe, |
1540 | .remove = adau1373_i2c_remove, | 1539 | .remove = adau1373_i2c_remove, |
diff --git a/sound/soc/codecs/adau1701.c b/sound/soc/codecs/adau1701.c index ff7f846e3b76..de53c0d7bf10 100644 --- a/sound/soc/codecs/adau1701.c +++ b/sound/soc/codecs/adau1701.c | |||
@@ -915,7 +915,6 @@ MODULE_DEVICE_TABLE(i2c, adau1701_i2c_id); | |||
915 | static struct i2c_driver adau1701_i2c_driver = { | 915 | static struct i2c_driver adau1701_i2c_driver = { |
916 | .driver = { | 916 | .driver = { |
917 | .name = "adau1701", | 917 | .name = "adau1701", |
918 | .owner = THIS_MODULE, | ||
919 | .of_match_table = of_match_ptr(adau1701_dt_ids), | 918 | .of_match_table = of_match_ptr(adau1701_dt_ids), |
920 | }, | 919 | }, |
921 | .probe = adau1701_i2c_probe, | 920 | .probe = adau1701_i2c_probe, |
diff --git a/sound/soc/codecs/adau1761-i2c.c b/sound/soc/codecs/adau1761-i2c.c index 862796dec693..348ccb17d3cc 100644 --- a/sound/soc/codecs/adau1761-i2c.c +++ b/sound/soc/codecs/adau1761-i2c.c | |||
@@ -47,7 +47,6 @@ MODULE_DEVICE_TABLE(i2c, adau1761_i2c_ids); | |||
47 | static struct i2c_driver adau1761_i2c_driver = { | 47 | static struct i2c_driver adau1761_i2c_driver = { |
48 | .driver = { | 48 | .driver = { |
49 | .name = "adau1761", | 49 | .name = "adau1761", |
50 | .owner = THIS_MODULE, | ||
51 | }, | 50 | }, |
52 | .probe = adau1761_i2c_probe, | 51 | .probe = adau1761_i2c_probe, |
53 | .remove = adau1761_i2c_remove, | 52 | .remove = adau1761_i2c_remove, |
diff --git a/sound/soc/codecs/adau1781-i2c.c b/sound/soc/codecs/adau1781-i2c.c index 2ce4362ccec1..0e32bba92339 100644 --- a/sound/soc/codecs/adau1781-i2c.c +++ b/sound/soc/codecs/adau1781-i2c.c | |||
@@ -45,7 +45,6 @@ MODULE_DEVICE_TABLE(i2c, adau1781_i2c_ids); | |||
45 | static struct i2c_driver adau1781_i2c_driver = { | 45 | static struct i2c_driver adau1781_i2c_driver = { |
46 | .driver = { | 46 | .driver = { |
47 | .name = "adau1781", | 47 | .name = "adau1781", |
48 | .owner = THIS_MODULE, | ||
49 | }, | 48 | }, |
50 | .probe = adau1781_i2c_probe, | 49 | .probe = adau1781_i2c_probe, |
51 | .remove = adau1781_i2c_remove, | 50 | .remove = adau1781_i2c_remove, |
diff --git a/sound/soc/codecs/adau1977-i2c.c b/sound/soc/codecs/adau1977-i2c.c index 9700e8c838c9..21e7394a972a 100644 --- a/sound/soc/codecs/adau1977-i2c.c +++ b/sound/soc/codecs/adau1977-i2c.c | |||
@@ -46,7 +46,6 @@ MODULE_DEVICE_TABLE(i2c, adau1977_i2c_ids); | |||
46 | static struct i2c_driver adau1977_i2c_driver = { | 46 | static struct i2c_driver adau1977_i2c_driver = { |
47 | .driver = { | 47 | .driver = { |
48 | .name = "adau1977", | 48 | .name = "adau1977", |
49 | .owner = THIS_MODULE, | ||
50 | }, | 49 | }, |
51 | .probe = adau1977_i2c_probe, | 50 | .probe = adau1977_i2c_probe, |
52 | .remove = adau1977_i2c_remove, | 51 | .remove = adau1977_i2c_remove, |
diff --git a/sound/soc/codecs/adav803.c b/sound/soc/codecs/adav803.c index 66d9fce34e62..52881faedcf6 100644 --- a/sound/soc/codecs/adav803.c +++ b/sound/soc/codecs/adav803.c | |||
@@ -36,7 +36,6 @@ static int adav803_remove(struct i2c_client *client) | |||
36 | static struct i2c_driver adav803_driver = { | 36 | static struct i2c_driver adav803_driver = { |
37 | .driver = { | 37 | .driver = { |
38 | .name = "adav803", | 38 | .name = "adav803", |
39 | .owner = THIS_MODULE, | ||
40 | }, | 39 | }, |
41 | .probe = adav803_probe, | 40 | .probe = adav803_probe, |
42 | .remove = adav803_remove, | 41 | .remove = adav803_remove, |
diff --git a/sound/soc/codecs/ak4535.c b/sound/soc/codecs/ak4535.c index 8670861e5bec..54428c64387b 100644 --- a/sound/soc/codecs/ak4535.c +++ b/sound/soc/codecs/ak4535.c | |||
@@ -444,7 +444,6 @@ MODULE_DEVICE_TABLE(i2c, ak4535_i2c_id); | |||
444 | static struct i2c_driver ak4535_i2c_driver = { | 444 | static struct i2c_driver ak4535_i2c_driver = { |
445 | .driver = { | 445 | .driver = { |
446 | .name = "ak4535", | 446 | .name = "ak4535", |
447 | .owner = THIS_MODULE, | ||
448 | }, | 447 | }, |
449 | .probe = ak4535_i2c_probe, | 448 | .probe = ak4535_i2c_probe, |
450 | .remove = ak4535_i2c_remove, | 449 | .remove = ak4535_i2c_remove, |
diff --git a/sound/soc/codecs/ak4641.c b/sound/soc/codecs/ak4641.c index 2d0ff4595ea0..b14176f8d884 100644 --- a/sound/soc/codecs/ak4641.c +++ b/sound/soc/codecs/ak4641.c | |||
@@ -609,7 +609,6 @@ MODULE_DEVICE_TABLE(i2c, ak4641_i2c_id); | |||
609 | static struct i2c_driver ak4641_i2c_driver = { | 609 | static struct i2c_driver ak4641_i2c_driver = { |
610 | .driver = { | 610 | .driver = { |
611 | .name = "ak4641", | 611 | .name = "ak4641", |
612 | .owner = THIS_MODULE, | ||
613 | }, | 612 | }, |
614 | .probe = ak4641_i2c_probe, | 613 | .probe = ak4641_i2c_probe, |
615 | .remove = ak4641_i2c_remove, | 614 | .remove = ak4641_i2c_remove, |
diff --git a/sound/soc/codecs/ak4642.c b/sound/soc/codecs/ak4642.c index 7c0f6552c229..66352f70ac47 100644 --- a/sound/soc/codecs/ak4642.c +++ b/sound/soc/codecs/ak4642.c | |||
@@ -626,7 +626,6 @@ MODULE_DEVICE_TABLE(i2c, ak4642_i2c_id); | |||
626 | static struct i2c_driver ak4642_i2c_driver = { | 626 | static struct i2c_driver ak4642_i2c_driver = { |
627 | .driver = { | 627 | .driver = { |
628 | .name = "ak4642-codec", | 628 | .name = "ak4642-codec", |
629 | .owner = THIS_MODULE, | ||
630 | .of_match_table = ak4642_of_match, | 629 | .of_match_table = ak4642_of_match, |
631 | }, | 630 | }, |
632 | .probe = ak4642_i2c_probe, | 631 | .probe = ak4642_i2c_probe, |
diff --git a/sound/soc/codecs/ak4671.c b/sound/soc/codecs/ak4671.c index 0e59063aeb6f..c73a9f6914b6 100644 --- a/sound/soc/codecs/ak4671.c +++ b/sound/soc/codecs/ak4671.c | |||
@@ -663,7 +663,6 @@ MODULE_DEVICE_TABLE(i2c, ak4671_i2c_id); | |||
663 | static struct i2c_driver ak4671_i2c_driver = { | 663 | static struct i2c_driver ak4671_i2c_driver = { |
664 | .driver = { | 664 | .driver = { |
665 | .name = "ak4671-codec", | 665 | .name = "ak4671-codec", |
666 | .owner = THIS_MODULE, | ||
667 | }, | 666 | }, |
668 | .probe = ak4671_i2c_probe, | 667 | .probe = ak4671_i2c_probe, |
669 | .remove = ak4671_i2c_remove, | 668 | .remove = ak4671_i2c_remove, |
diff --git a/sound/soc/codecs/alc5623.c b/sound/soc/codecs/alc5623.c index 0fc24e0d518c..cf99c4e90acc 100644 --- a/sound/soc/codecs/alc5623.c +++ b/sound/soc/codecs/alc5623.c | |||
@@ -1085,7 +1085,6 @@ MODULE_DEVICE_TABLE(of, alc5623_of_match); | |||
1085 | static struct i2c_driver alc5623_i2c_driver = { | 1085 | static struct i2c_driver alc5623_i2c_driver = { |
1086 | .driver = { | 1086 | .driver = { |
1087 | .name = "alc562x-codec", | 1087 | .name = "alc562x-codec", |
1088 | .owner = THIS_MODULE, | ||
1089 | .of_match_table = of_match_ptr(alc5623_of_match), | 1088 | .of_match_table = of_match_ptr(alc5623_of_match), |
1090 | }, | 1089 | }, |
1091 | .probe = alc5623_i2c_probe, | 1090 | .probe = alc5623_i2c_probe, |
diff --git a/sound/soc/codecs/alc5632.c b/sound/soc/codecs/alc5632.c index 607a63b9705f..9277ac68b696 100644 --- a/sound/soc/codecs/alc5632.c +++ b/sound/soc/codecs/alc5632.c | |||
@@ -1183,7 +1183,6 @@ MODULE_DEVICE_TABLE(of, alc5632_of_match); | |||
1183 | static struct i2c_driver alc5632_i2c_driver = { | 1183 | static struct i2c_driver alc5632_i2c_driver = { |
1184 | .driver = { | 1184 | .driver = { |
1185 | .name = "alc5632", | 1185 | .name = "alc5632", |
1186 | .owner = THIS_MODULE, | ||
1187 | .of_match_table = of_match_ptr(alc5632_of_match), | 1186 | .of_match_table = of_match_ptr(alc5632_of_match), |
1188 | }, | 1187 | }, |
1189 | .probe = alc5632_i2c_probe, | 1188 | .probe = alc5632_i2c_probe, |
diff --git a/sound/soc/codecs/cs35l32.c b/sound/soc/codecs/cs35l32.c index 8f40025b7e7c..76564dc752d3 100644 --- a/sound/soc/codecs/cs35l32.c +++ b/sound/soc/codecs/cs35l32.c | |||
@@ -607,7 +607,6 @@ MODULE_DEVICE_TABLE(i2c, cs35l32_id); | |||
607 | static struct i2c_driver cs35l32_i2c_driver = { | 607 | static struct i2c_driver cs35l32_i2c_driver = { |
608 | .driver = { | 608 | .driver = { |
609 | .name = "cs35l32", | 609 | .name = "cs35l32", |
610 | .owner = THIS_MODULE, | ||
611 | .pm = &cs35l32_runtime_pm, | 610 | .pm = &cs35l32_runtime_pm, |
612 | .of_match_table = cs35l32_of_match, | 611 | .of_match_table = cs35l32_of_match, |
613 | }, | 612 | }, |
diff --git a/sound/soc/codecs/cs4265.c b/sound/soc/codecs/cs4265.c index d7ec4756e45b..d1a77c7489d8 100644 --- a/sound/soc/codecs/cs4265.c +++ b/sound/soc/codecs/cs4265.c | |||
@@ -658,7 +658,6 @@ MODULE_DEVICE_TABLE(i2c, cs4265_id); | |||
658 | static struct i2c_driver cs4265_i2c_driver = { | 658 | static struct i2c_driver cs4265_i2c_driver = { |
659 | .driver = { | 659 | .driver = { |
660 | .name = "cs4265", | 660 | .name = "cs4265", |
661 | .owner = THIS_MODULE, | ||
662 | .of_match_table = cs4265_of_match, | 661 | .of_match_table = cs4265_of_match, |
663 | }, | 662 | }, |
664 | .id_table = cs4265_id, | 663 | .id_table = cs4265_id, |
diff --git a/sound/soc/codecs/cs4270.c b/sound/soc/codecs/cs4270.c index e6d4ff9fd992..e07807d96b68 100644 --- a/sound/soc/codecs/cs4270.c +++ b/sound/soc/codecs/cs4270.c | |||
@@ -751,7 +751,6 @@ MODULE_DEVICE_TABLE(i2c, cs4270_id); | |||
751 | static struct i2c_driver cs4270_i2c_driver = { | 751 | static struct i2c_driver cs4270_i2c_driver = { |
752 | .driver = { | 752 | .driver = { |
753 | .name = "cs4270", | 753 | .name = "cs4270", |
754 | .owner = THIS_MODULE, | ||
755 | .of_match_table = cs4270_of_match, | 754 | .of_match_table = cs4270_of_match, |
756 | }, | 755 | }, |
757 | .id_table = cs4270_id, | 756 | .id_table = cs4270_id, |
diff --git a/sound/soc/codecs/cs4271-i2c.c b/sound/soc/codecs/cs4271-i2c.c index b264da030340..dcb3223d7d8f 100644 --- a/sound/soc/codecs/cs4271-i2c.c +++ b/sound/soc/codecs/cs4271-i2c.c | |||
@@ -48,7 +48,6 @@ MODULE_DEVICE_TABLE(i2c, cs4271_i2c_id); | |||
48 | static struct i2c_driver cs4271_i2c_driver = { | 48 | static struct i2c_driver cs4271_i2c_driver = { |
49 | .driver = { | 49 | .driver = { |
50 | .name = "cs4271", | 50 | .name = "cs4271", |
51 | .owner = THIS_MODULE, | ||
52 | .of_match_table = of_match_ptr(cs4271_dt_ids), | 51 | .of_match_table = of_match_ptr(cs4271_dt_ids), |
53 | }, | 52 | }, |
54 | .probe = cs4271_i2c_probe, | 53 | .probe = cs4271_i2c_probe, |
diff --git a/sound/soc/codecs/cs42l51-i2c.c b/sound/soc/codecs/cs42l51-i2c.c index c40428f25ba5..9bad478474fa 100644 --- a/sound/soc/codecs/cs42l51-i2c.c +++ b/sound/soc/codecs/cs42l51-i2c.c | |||
@@ -45,7 +45,6 @@ static int cs42l51_i2c_remove(struct i2c_client *i2c) | |||
45 | static struct i2c_driver cs42l51_i2c_driver = { | 45 | static struct i2c_driver cs42l51_i2c_driver = { |
46 | .driver = { | 46 | .driver = { |
47 | .name = "cs42l51", | 47 | .name = "cs42l51", |
48 | .owner = THIS_MODULE, | ||
49 | .of_match_table = cs42l51_of_match, | 48 | .of_match_table = cs42l51_of_match, |
50 | }, | 49 | }, |
51 | .probe = cs42l51_i2c_probe, | 50 | .probe = cs42l51_i2c_probe, |
diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c index 4de52c9957ac..b82d8e5b76ed 100644 --- a/sound/soc/codecs/cs42l52.c +++ b/sound/soc/codecs/cs42l52.c | |||
@@ -1285,7 +1285,6 @@ MODULE_DEVICE_TABLE(i2c, cs42l52_id); | |||
1285 | static struct i2c_driver cs42l52_i2c_driver = { | 1285 | static struct i2c_driver cs42l52_i2c_driver = { |
1286 | .driver = { | 1286 | .driver = { |
1287 | .name = "cs42l52", | 1287 | .name = "cs42l52", |
1288 | .owner = THIS_MODULE, | ||
1289 | .of_match_table = cs42l52_of_match, | 1288 | .of_match_table = cs42l52_of_match, |
1290 | }, | 1289 | }, |
1291 | .id_table = cs42l52_id, | 1290 | .id_table = cs42l52_id, |
diff --git a/sound/soc/codecs/cs42l56.c b/sound/soc/codecs/cs42l56.c index 1e11ba45a79f..4ae793365985 100644 --- a/sound/soc/codecs/cs42l56.c +++ b/sound/soc/codecs/cs42l56.c | |||
@@ -1408,7 +1408,6 @@ MODULE_DEVICE_TABLE(i2c, cs42l56_id); | |||
1408 | static struct i2c_driver cs42l56_i2c_driver = { | 1408 | static struct i2c_driver cs42l56_i2c_driver = { |
1409 | .driver = { | 1409 | .driver = { |
1410 | .name = "cs42l56", | 1410 | .name = "cs42l56", |
1411 | .owner = THIS_MODULE, | ||
1412 | .of_match_table = cs42l56_of_match, | 1411 | .of_match_table = cs42l56_of_match, |
1413 | }, | 1412 | }, |
1414 | .id_table = cs42l56_id, | 1413 | .id_table = cs42l56_id, |
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c index b7853b9d3a60..7cb1d7091dae 100644 --- a/sound/soc/codecs/cs42l73.c +++ b/sound/soc/codecs/cs42l73.c | |||
@@ -1491,7 +1491,6 @@ MODULE_DEVICE_TABLE(i2c, cs42l73_id); | |||
1491 | static struct i2c_driver cs42l73_i2c_driver = { | 1491 | static struct i2c_driver cs42l73_i2c_driver = { |
1492 | .driver = { | 1492 | .driver = { |
1493 | .name = "cs42l73", | 1493 | .name = "cs42l73", |
1494 | .owner = THIS_MODULE, | ||
1495 | .of_match_table = cs42l73_of_match, | 1494 | .of_match_table = cs42l73_of_match, |
1496 | }, | 1495 | }, |
1497 | .id_table = cs42l73_id, | 1496 | .id_table = cs42l73_id, |
diff --git a/sound/soc/codecs/cs42xx8-i2c.c b/sound/soc/codecs/cs42xx8-i2c.c index 5a71c9e5b441..800c1d549347 100644 --- a/sound/soc/codecs/cs42xx8-i2c.c +++ b/sound/soc/codecs/cs42xx8-i2c.c | |||
@@ -49,7 +49,6 @@ MODULE_DEVICE_TABLE(i2c, cs42xx8_i2c_id); | |||
49 | static struct i2c_driver cs42xx8_i2c_driver = { | 49 | static struct i2c_driver cs42xx8_i2c_driver = { |
50 | .driver = { | 50 | .driver = { |
51 | .name = "cs42xx8", | 51 | .name = "cs42xx8", |
52 | .owner = THIS_MODULE, | ||
53 | .pm = &cs42xx8_pm, | 52 | .pm = &cs42xx8_pm, |
54 | .of_match_table = cs42xx8_of_match, | 53 | .of_match_table = cs42xx8_of_match, |
55 | }, | 54 | }, |
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c index 21810e5f3321..9c7b41a8642d 100644 --- a/sound/soc/codecs/da7210.c +++ b/sound/soc/codecs/da7210.c | |||
@@ -1259,7 +1259,6 @@ MODULE_DEVICE_TABLE(i2c, da7210_i2c_id); | |||
1259 | static struct i2c_driver da7210_i2c_driver = { | 1259 | static struct i2c_driver da7210_i2c_driver = { |
1260 | .driver = { | 1260 | .driver = { |
1261 | .name = "da7210", | 1261 | .name = "da7210", |
1262 | .owner = THIS_MODULE, | ||
1263 | }, | 1262 | }, |
1264 | .probe = da7210_i2c_probe, | 1263 | .probe = da7210_i2c_probe, |
1265 | .remove = da7210_i2c_remove, | 1264 | .remove = da7210_i2c_remove, |
diff --git a/sound/soc/codecs/da7213.c b/sound/soc/codecs/da7213.c index 238e48a3a4fe..f635401b7730 100644 --- a/sound/soc/codecs/da7213.c +++ b/sound/soc/codecs/da7213.c | |||
@@ -1585,7 +1585,6 @@ MODULE_DEVICE_TABLE(i2c, da7213_i2c_id); | |||
1585 | static struct i2c_driver da7213_i2c_driver = { | 1585 | static struct i2c_driver da7213_i2c_driver = { |
1586 | .driver = { | 1586 | .driver = { |
1587 | .name = "da7213", | 1587 | .name = "da7213", |
1588 | .owner = THIS_MODULE, | ||
1589 | }, | 1588 | }, |
1590 | .probe = da7213_i2c_probe, | 1589 | .probe = da7213_i2c_probe, |
1591 | .remove = da7213_remove, | 1590 | .remove = da7213_remove, |
diff --git a/sound/soc/codecs/da732x.c b/sound/soc/codecs/da732x.c index 207523686bd5..5446d047d2de 100644 --- a/sound/soc/codecs/da732x.c +++ b/sound/soc/codecs/da732x.c | |||
@@ -1572,7 +1572,6 @@ MODULE_DEVICE_TABLE(i2c, da732x_i2c_id); | |||
1572 | static struct i2c_driver da732x_i2c_driver = { | 1572 | static struct i2c_driver da732x_i2c_driver = { |
1573 | .driver = { | 1573 | .driver = { |
1574 | .name = "da7320", | 1574 | .name = "da7320", |
1575 | .owner = THIS_MODULE, | ||
1576 | }, | 1575 | }, |
1577 | .probe = da732x_i2c_probe, | 1576 | .probe = da732x_i2c_probe, |
1578 | .remove = da732x_i2c_remove, | 1577 | .remove = da732x_i2c_remove, |
diff --git a/sound/soc/codecs/da9055.c b/sound/soc/codecs/da9055.c index 66bb446473b8..7d5baa66b132 100644 --- a/sound/soc/codecs/da9055.c +++ b/sound/soc/codecs/da9055.c | |||
@@ -1538,7 +1538,6 @@ static const struct of_device_id da9055_of_match[] = { | |||
1538 | static struct i2c_driver da9055_i2c_driver = { | 1538 | static struct i2c_driver da9055_i2c_driver = { |
1539 | .driver = { | 1539 | .driver = { |
1540 | .name = "da9055-codec", | 1540 | .name = "da9055-codec", |
1541 | .owner = THIS_MODULE, | ||
1542 | .of_match_table = of_match_ptr(da9055_of_match), | 1541 | .of_match_table = of_match_ptr(da9055_of_match), |
1543 | }, | 1542 | }, |
1544 | .probe = da9055_i2c_probe, | 1543 | .probe = da9055_i2c_probe, |
diff --git a/sound/soc/codecs/isabelle.c b/sound/soc/codecs/isabelle.c index ebd90283c960..58a43b11eb7e 100644 --- a/sound/soc/codecs/isabelle.c +++ b/sound/soc/codecs/isabelle.c | |||
@@ -1149,7 +1149,6 @@ MODULE_DEVICE_TABLE(i2c, isabelle_i2c_id); | |||
1149 | static struct i2c_driver isabelle_i2c_driver = { | 1149 | static struct i2c_driver isabelle_i2c_driver = { |
1150 | .driver = { | 1150 | .driver = { |
1151 | .name = "isabelle", | 1151 | .name = "isabelle", |
1152 | .owner = THIS_MODULE, | ||
1153 | }, | 1152 | }, |
1154 | .probe = isabelle_i2c_probe, | 1153 | .probe = isabelle_i2c_probe, |
1155 | .remove = isabelle_i2c_remove, | 1154 | .remove = isabelle_i2c_remove, |
diff --git a/sound/soc/codecs/lm4857.c b/sound/soc/codecs/lm4857.c index 99ffc49aa779..558de1053f73 100644 --- a/sound/soc/codecs/lm4857.c +++ b/sound/soc/codecs/lm4857.c | |||
@@ -142,7 +142,6 @@ MODULE_DEVICE_TABLE(i2c, lm4857_i2c_id); | |||
142 | static struct i2c_driver lm4857_i2c_driver = { | 142 | static struct i2c_driver lm4857_i2c_driver = { |
143 | .driver = { | 143 | .driver = { |
144 | .name = "lm4857", | 144 | .name = "lm4857", |
145 | .owner = THIS_MODULE, | ||
146 | }, | 145 | }, |
147 | .probe = lm4857_i2c_probe, | 146 | .probe = lm4857_i2c_probe, |
148 | .id_table = lm4857_i2c_id, | 147 | .id_table = lm4857_i2c_id, |
diff --git a/sound/soc/codecs/lm49453.c b/sound/soc/codecs/lm49453.c index 6600aa0a33dc..9b2e38395eb9 100644 --- a/sound/soc/codecs/lm49453.c +++ b/sound/soc/codecs/lm49453.c | |||
@@ -1460,7 +1460,6 @@ MODULE_DEVICE_TABLE(i2c, lm49453_i2c_id); | |||
1460 | static struct i2c_driver lm49453_i2c_driver = { | 1460 | static struct i2c_driver lm49453_i2c_driver = { |
1461 | .driver = { | 1461 | .driver = { |
1462 | .name = "lm49453", | 1462 | .name = "lm49453", |
1463 | .owner = THIS_MODULE, | ||
1464 | }, | 1463 | }, |
1465 | .probe = lm49453_i2c_probe, | 1464 | .probe = lm49453_i2c_probe, |
1466 | .remove = lm49453_i2c_remove, | 1465 | .remove = lm49453_i2c_remove, |
diff --git a/sound/soc/codecs/max9768.c b/sound/soc/codecs/max9768.c index e1c196a41930..1526aef2f2a9 100644 --- a/sound/soc/codecs/max9768.c +++ b/sound/soc/codecs/max9768.c | |||
@@ -242,7 +242,6 @@ MODULE_DEVICE_TABLE(i2c, max9768_i2c_id); | |||
242 | static struct i2c_driver max9768_i2c_driver = { | 242 | static struct i2c_driver max9768_i2c_driver = { |
243 | .driver = { | 243 | .driver = { |
244 | .name = "max9768", | 244 | .name = "max9768", |
245 | .owner = THIS_MODULE, | ||
246 | }, | 245 | }, |
247 | .probe = max9768_i2c_probe, | 246 | .probe = max9768_i2c_probe, |
248 | .remove = max9768_i2c_remove, | 247 | .remove = max9768_i2c_remove, |
diff --git a/sound/soc/codecs/max98088.c b/sound/soc/codecs/max98088.c index d0f45348bfbb..99c2daa0eebf 100644 --- a/sound/soc/codecs/max98088.c +++ b/sound/soc/codecs/max98088.c | |||
@@ -2011,7 +2011,6 @@ MODULE_DEVICE_TABLE(i2c, max98088_i2c_id); | |||
2011 | static struct i2c_driver max98088_i2c_driver = { | 2011 | static struct i2c_driver max98088_i2c_driver = { |
2012 | .driver = { | 2012 | .driver = { |
2013 | .name = "max98088", | 2013 | .name = "max98088", |
2014 | .owner = THIS_MODULE, | ||
2015 | }, | 2014 | }, |
2016 | .probe = max98088_i2c_probe, | 2015 | .probe = max98088_i2c_probe, |
2017 | .remove = max98088_i2c_remove, | 2016 | .remove = max98088_i2c_remove, |
diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c index 78268f0514e9..c9db085e6cf1 100644 --- a/sound/soc/codecs/max98090.c +++ b/sound/soc/codecs/max98090.c | |||
@@ -2714,7 +2714,6 @@ MODULE_DEVICE_TABLE(acpi, max98090_acpi_match); | |||
2714 | static struct i2c_driver max98090_i2c_driver = { | 2714 | static struct i2c_driver max98090_i2c_driver = { |
2715 | .driver = { | 2715 | .driver = { |
2716 | .name = "max98090", | 2716 | .name = "max98090", |
2717 | .owner = THIS_MODULE, | ||
2718 | .pm = &max98090_pm, | 2717 | .pm = &max98090_pm, |
2719 | .of_match_table = of_match_ptr(max98090_of_match), | 2718 | .of_match_table = of_match_ptr(max98090_of_match), |
2720 | .acpi_match_table = ACPI_PTR(max98090_acpi_match), | 2719 | .acpi_match_table = ACPI_PTR(max98090_acpi_match), |
diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c index 9a46d3dcf703..ea45c355d324 100644 --- a/sound/soc/codecs/max98095.c +++ b/sound/soc/codecs/max98095.c | |||
@@ -2431,7 +2431,6 @@ MODULE_DEVICE_TABLE(of, max98095_of_match); | |||
2431 | static struct i2c_driver max98095_i2c_driver = { | 2431 | static struct i2c_driver max98095_i2c_driver = { |
2432 | .driver = { | 2432 | .driver = { |
2433 | .name = "max98095", | 2433 | .name = "max98095", |
2434 | .owner = THIS_MODULE, | ||
2435 | .of_match_table = of_match_ptr(max98095_of_match), | 2434 | .of_match_table = of_match_ptr(max98095_of_match), |
2436 | }, | 2435 | }, |
2437 | .probe = max98095_i2c_probe, | 2436 | .probe = max98095_i2c_probe, |
diff --git a/sound/soc/codecs/max9850.c b/sound/soc/codecs/max9850.c index 481d58f1cb3f..7c990521638c 100644 --- a/sound/soc/codecs/max9850.c +++ b/sound/soc/codecs/max9850.c | |||
@@ -352,7 +352,6 @@ MODULE_DEVICE_TABLE(i2c, max9850_i2c_id); | |||
352 | static struct i2c_driver max9850_i2c_driver = { | 352 | static struct i2c_driver max9850_i2c_driver = { |
353 | .driver = { | 353 | .driver = { |
354 | .name = "max9850", | 354 | .name = "max9850", |
355 | .owner = THIS_MODULE, | ||
356 | }, | 355 | }, |
357 | .probe = max9850_i2c_probe, | 356 | .probe = max9850_i2c_probe, |
358 | .remove = max9850_i2c_remove, | 357 | .remove = max9850_i2c_remove, |
diff --git a/sound/soc/codecs/max9877.c b/sound/soc/codecs/max9877.c index 29549cdbf4c1..7692623ad5c3 100644 --- a/sound/soc/codecs/max9877.c +++ b/sound/soc/codecs/max9877.c | |||
@@ -174,7 +174,6 @@ MODULE_DEVICE_TABLE(i2c, max9877_i2c_id); | |||
174 | static struct i2c_driver max9877_i2c_driver = { | 174 | static struct i2c_driver max9877_i2c_driver = { |
175 | .driver = { | 175 | .driver = { |
176 | .name = "max9877", | 176 | .name = "max9877", |
177 | .owner = THIS_MODULE, | ||
178 | }, | 177 | }, |
179 | .probe = max9877_i2c_probe, | 178 | .probe = max9877_i2c_probe, |
180 | .remove = max9877_i2c_remove, | 179 | .remove = max9877_i2c_remove, |
diff --git a/sound/soc/codecs/max98925.c b/sound/soc/codecs/max98925.c index aad664225dc3..ce551eecbf95 100644 --- a/sound/soc/codecs/max98925.c +++ b/sound/soc/codecs/max98925.c | |||
@@ -639,7 +639,6 @@ MODULE_DEVICE_TABLE(of, max98925_of_match); | |||
639 | static struct i2c_driver max98925_i2c_driver = { | 639 | static struct i2c_driver max98925_i2c_driver = { |
640 | .driver = { | 640 | .driver = { |
641 | .name = "max98925", | 641 | .name = "max98925", |
642 | .owner = THIS_MODULE, | ||
643 | .of_match_table = of_match_ptr(max98925_of_match), | 642 | .of_match_table = of_match_ptr(max98925_of_match), |
644 | .pm = NULL, | 643 | .pm = NULL, |
645 | }, | 644 | }, |
diff --git a/sound/soc/codecs/ml26124.c b/sound/soc/codecs/ml26124.c index b74118e019fb..bda2bd751be4 100644 --- a/sound/soc/codecs/ml26124.c +++ b/sound/soc/codecs/ml26124.c | |||
@@ -597,7 +597,6 @@ MODULE_DEVICE_TABLE(i2c, ml26124_i2c_id); | |||
597 | static struct i2c_driver ml26124_i2c_driver = { | 597 | static struct i2c_driver ml26124_i2c_driver = { |
598 | .driver = { | 598 | .driver = { |
599 | .name = "ml26124", | 599 | .name = "ml26124", |
600 | .owner = THIS_MODULE, | ||
601 | }, | 600 | }, |
602 | .probe = ml26124_i2c_probe, | 601 | .probe = ml26124_i2c_probe, |
603 | .remove = ml26124_i2c_remove, | 602 | .remove = ml26124_i2c_remove, |
diff --git a/sound/soc/codecs/pcm1681.c b/sound/soc/codecs/pcm1681.c index 477e13d30971..b2c990f08aa3 100644 --- a/sound/soc/codecs/pcm1681.c +++ b/sound/soc/codecs/pcm1681.c | |||
@@ -330,7 +330,6 @@ static int pcm1681_i2c_remove(struct i2c_client *client) | |||
330 | static struct i2c_driver pcm1681_i2c_driver = { | 330 | static struct i2c_driver pcm1681_i2c_driver = { |
331 | .driver = { | 331 | .driver = { |
332 | .name = "pcm1681", | 332 | .name = "pcm1681", |
333 | .owner = THIS_MODULE, | ||
334 | .of_match_table = of_match_ptr(pcm1681_dt_ids), | 333 | .of_match_table = of_match_ptr(pcm1681_dt_ids), |
335 | }, | 334 | }, |
336 | .id_table = pcm1681_i2c_id, | 335 | .id_table = pcm1681_i2c_id, |
diff --git a/sound/soc/codecs/pcm512x-i2c.c b/sound/soc/codecs/pcm512x-i2c.c index dcdfac0ffeb1..dbff416e38be 100644 --- a/sound/soc/codecs/pcm512x-i2c.c +++ b/sound/soc/codecs/pcm512x-i2c.c | |||
@@ -67,7 +67,6 @@ static struct i2c_driver pcm512x_i2c_driver = { | |||
67 | .id_table = pcm512x_i2c_id, | 67 | .id_table = pcm512x_i2c_id, |
68 | .driver = { | 68 | .driver = { |
69 | .name = "pcm512x", | 69 | .name = "pcm512x", |
70 | .owner = THIS_MODULE, | ||
71 | .of_match_table = pcm512x_of_match, | 70 | .of_match_table = pcm512x_of_match, |
72 | .pm = &pcm512x_pm_ops, | 71 | .pm = &pcm512x_pm_ops, |
73 | }, | 72 | }, |
diff --git a/sound/soc/codecs/rt286.c b/sound/soc/codecs/rt286.c index 5c43e263b2c1..83029e461309 100644 --- a/sound/soc/codecs/rt286.c +++ b/sound/soc/codecs/rt286.c | |||
@@ -1259,7 +1259,6 @@ static int rt286_i2c_remove(struct i2c_client *i2c) | |||
1259 | static struct i2c_driver rt286_i2c_driver = { | 1259 | static struct i2c_driver rt286_i2c_driver = { |
1260 | .driver = { | 1260 | .driver = { |
1261 | .name = "rt286", | 1261 | .name = "rt286", |
1262 | .owner = THIS_MODULE, | ||
1263 | .acpi_match_table = ACPI_PTR(rt286_acpi_match), | 1262 | .acpi_match_table = ACPI_PTR(rt286_acpi_match), |
1264 | }, | 1263 | }, |
1265 | .probe = rt286_i2c_probe, | 1264 | .probe = rt286_i2c_probe, |
diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c index 7c4bcb65ef2c..75e5679dfef8 100644 --- a/sound/soc/codecs/rt298.c +++ b/sound/soc/codecs/rt298.c | |||
@@ -1259,7 +1259,6 @@ static int rt298_i2c_remove(struct i2c_client *i2c) | |||
1259 | static struct i2c_driver rt298_i2c_driver = { | 1259 | static struct i2c_driver rt298_i2c_driver = { |
1260 | .driver = { | 1260 | .driver = { |
1261 | .name = "rt298", | 1261 | .name = "rt298", |
1262 | .owner = THIS_MODULE, | ||
1263 | .acpi_match_table = ACPI_PTR(rt298_acpi_match), | 1262 | .acpi_match_table = ACPI_PTR(rt298_acpi_match), |
1264 | }, | 1263 | }, |
1265 | .probe = rt298_i2c_probe, | 1264 | .probe = rt298_i2c_probe, |
diff --git a/sound/soc/codecs/rt5631.c b/sound/soc/codecs/rt5631.c index 058167c80d71..d8771020299d 100644 --- a/sound/soc/codecs/rt5631.c +++ b/sound/soc/codecs/rt5631.c | |||
@@ -1725,7 +1725,6 @@ static int rt5631_i2c_remove(struct i2c_client *client) | |||
1725 | static struct i2c_driver rt5631_i2c_driver = { | 1725 | static struct i2c_driver rt5631_i2c_driver = { |
1726 | .driver = { | 1726 | .driver = { |
1727 | .name = "rt5631", | 1727 | .name = "rt5631", |
1728 | .owner = THIS_MODULE, | ||
1729 | .of_match_table = of_match_ptr(rt5631_i2c_dt_ids), | 1728 | .of_match_table = of_match_ptr(rt5631_i2c_dt_ids), |
1730 | }, | 1729 | }, |
1731 | .probe = rt5631_i2c_probe, | 1730 | .probe = rt5631_i2c_probe, |
diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c index 9bc78e57513d..4a780efdd728 100644 --- a/sound/soc/codecs/rt5640.c +++ b/sound/soc/codecs/rt5640.c | |||
@@ -2242,7 +2242,6 @@ static int rt5640_i2c_remove(struct i2c_client *i2c) | |||
2242 | static struct i2c_driver rt5640_i2c_driver = { | 2242 | static struct i2c_driver rt5640_i2c_driver = { |
2243 | .driver = { | 2243 | .driver = { |
2244 | .name = "rt5640", | 2244 | .name = "rt5640", |
2245 | .owner = THIS_MODULE, | ||
2246 | .acpi_match_table = ACPI_PTR(rt5640_acpi_match), | 2245 | .acpi_match_table = ACPI_PTR(rt5640_acpi_match), |
2247 | .of_match_table = of_match_ptr(rt5640_of_match), | 2246 | .of_match_table = of_match_ptr(rt5640_of_match), |
2248 | }, | 2247 | }, |
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 9ce311e088fc..23a7e8d61429 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c | |||
@@ -3459,7 +3459,6 @@ static int rt5645_i2c_remove(struct i2c_client *i2c) | |||
3459 | static struct i2c_driver rt5645_i2c_driver = { | 3459 | static struct i2c_driver rt5645_i2c_driver = { |
3460 | .driver = { | 3460 | .driver = { |
3461 | .name = "rt5645", | 3461 | .name = "rt5645", |
3462 | .owner = THIS_MODULE, | ||
3463 | .acpi_match_table = ACPI_PTR(rt5645_acpi_match), | 3462 | .acpi_match_table = ACPI_PTR(rt5645_acpi_match), |
3464 | }, | 3463 | }, |
3465 | .probe = rt5645_i2c_probe, | 3464 | .probe = rt5645_i2c_probe, |
diff --git a/sound/soc/codecs/rt5651.c b/sound/soc/codecs/rt5651.c index a3506e193abc..872121015dfc 100644 --- a/sound/soc/codecs/rt5651.c +++ b/sound/soc/codecs/rt5651.c | |||
@@ -1806,7 +1806,6 @@ static int rt5651_i2c_remove(struct i2c_client *i2c) | |||
1806 | static struct i2c_driver rt5651_i2c_driver = { | 1806 | static struct i2c_driver rt5651_i2c_driver = { |
1807 | .driver = { | 1807 | .driver = { |
1808 | .name = "rt5651", | 1808 | .name = "rt5651", |
1809 | .owner = THIS_MODULE, | ||
1810 | }, | 1809 | }, |
1811 | .probe = rt5651_i2c_probe, | 1810 | .probe = rt5651_i2c_probe, |
1812 | .remove = rt5651_i2c_remove, | 1811 | .remove = rt5651_i2c_remove, |
diff --git a/sound/soc/codecs/rt5670.c b/sound/soc/codecs/rt5670.c index a9123d414178..8f9ab2b493ec 100644 --- a/sound/soc/codecs/rt5670.c +++ b/sound/soc/codecs/rt5670.c | |||
@@ -3043,7 +3043,6 @@ static int rt5670_i2c_remove(struct i2c_client *i2c) | |||
3043 | static struct i2c_driver rt5670_i2c_driver = { | 3043 | static struct i2c_driver rt5670_i2c_driver = { |
3044 | .driver = { | 3044 | .driver = { |
3045 | .name = "rt5670", | 3045 | .name = "rt5670", |
3046 | .owner = THIS_MODULE, | ||
3047 | .acpi_match_table = ACPI_PTR(rt5670_acpi_match), | 3046 | .acpi_match_table = ACPI_PTR(rt5670_acpi_match), |
3048 | }, | 3047 | }, |
3049 | .probe = rt5670_i2c_probe, | 3048 | .probe = rt5670_i2c_probe, |
diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c index 31d969ac1192..03afec78a170 100644 --- a/sound/soc/codecs/rt5677.c +++ b/sound/soc/codecs/rt5677.c | |||
@@ -5273,7 +5273,6 @@ static int rt5677_i2c_remove(struct i2c_client *i2c) | |||
5273 | static struct i2c_driver rt5677_i2c_driver = { | 5273 | static struct i2c_driver rt5677_i2c_driver = { |
5274 | .driver = { | 5274 | .driver = { |
5275 | .name = "rt5677", | 5275 | .name = "rt5677", |
5276 | .owner = THIS_MODULE, | ||
5277 | }, | 5276 | }, |
5278 | .probe = rt5677_i2c_probe, | 5277 | .probe = rt5677_i2c_probe, |
5279 | .remove = rt5677_i2c_remove, | 5278 | .remove = rt5677_i2c_remove, |
diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c index e673f6ceb521..f3e646757215 100644 --- a/sound/soc/codecs/sgtl5000.c +++ b/sound/soc/codecs/sgtl5000.c | |||
@@ -1601,7 +1601,6 @@ MODULE_DEVICE_TABLE(of, sgtl5000_dt_ids); | |||
1601 | static struct i2c_driver sgtl5000_i2c_driver = { | 1601 | static struct i2c_driver sgtl5000_i2c_driver = { |
1602 | .driver = { | 1602 | .driver = { |
1603 | .name = "sgtl5000", | 1603 | .name = "sgtl5000", |
1604 | .owner = THIS_MODULE, | ||
1605 | .of_match_table = sgtl5000_dt_ids, | 1604 | .of_match_table = sgtl5000_dt_ids, |
1606 | }, | 1605 | }, |
1607 | .probe = sgtl5000_i2c_probe, | 1606 | .probe = sgtl5000_i2c_probe, |
diff --git a/sound/soc/codecs/ssm2518.c b/sound/soc/codecs/ssm2518.c index f30de7639bb9..5d94d6c7ad33 100644 --- a/sound/soc/codecs/ssm2518.c +++ b/sound/soc/codecs/ssm2518.c | |||
@@ -815,7 +815,6 @@ MODULE_DEVICE_TABLE(i2c, ssm2518_i2c_ids); | |||
815 | static struct i2c_driver ssm2518_driver = { | 815 | static struct i2c_driver ssm2518_driver = { |
816 | .driver = { | 816 | .driver = { |
817 | .name = "ssm2518", | 817 | .name = "ssm2518", |
818 | .owner = THIS_MODULE, | ||
819 | }, | 818 | }, |
820 | .probe = ssm2518_i2c_probe, | 819 | .probe = ssm2518_i2c_probe, |
821 | .remove = ssm2518_i2c_remove, | 820 | .remove = ssm2518_i2c_remove, |
diff --git a/sound/soc/codecs/ssm2602-i2c.c b/sound/soc/codecs/ssm2602-i2c.c index 0d9779d6bfda..173ba85ff59e 100644 --- a/sound/soc/codecs/ssm2602-i2c.c +++ b/sound/soc/codecs/ssm2602-i2c.c | |||
@@ -52,7 +52,6 @@ MODULE_DEVICE_TABLE(of, ssm2602_of_match); | |||
52 | static struct i2c_driver ssm2602_i2c_driver = { | 52 | static struct i2c_driver ssm2602_i2c_driver = { |
53 | .driver = { | 53 | .driver = { |
54 | .name = "ssm2602", | 54 | .name = "ssm2602", |
55 | .owner = THIS_MODULE, | ||
56 | .of_match_table = ssm2602_of_match, | 55 | .of_match_table = ssm2602_of_match, |
57 | }, | 56 | }, |
58 | .probe = ssm2602_i2c_probe, | 57 | .probe = ssm2602_i2c_probe, |
diff --git a/sound/soc/codecs/ssm4567.c b/sound/soc/codecs/ssm4567.c index 938d2cb6d78b..f3f1f6874c72 100644 --- a/sound/soc/codecs/ssm4567.c +++ b/sound/soc/codecs/ssm4567.c | |||
@@ -453,7 +453,6 @@ MODULE_DEVICE_TABLE(i2c, ssm4567_i2c_ids); | |||
453 | static struct i2c_driver ssm4567_driver = { | 453 | static struct i2c_driver ssm4567_driver = { |
454 | .driver = { | 454 | .driver = { |
455 | .name = "ssm4567", | 455 | .name = "ssm4567", |
456 | .owner = THIS_MODULE, | ||
457 | }, | 456 | }, |
458 | .probe = ssm4567_i2c_probe, | 457 | .probe = ssm4567_i2c_probe, |
459 | .remove = ssm4567_i2c_remove, | 458 | .remove = ssm4567_i2c_remove, |
diff --git a/sound/soc/codecs/sta32x.c b/sound/soc/codecs/sta32x.c index 60eff36260cb..a9844b2ac829 100644 --- a/sound/soc/codecs/sta32x.c +++ b/sound/soc/codecs/sta32x.c | |||
@@ -1144,7 +1144,6 @@ MODULE_DEVICE_TABLE(i2c, sta32x_i2c_id); | |||
1144 | static struct i2c_driver sta32x_i2c_driver = { | 1144 | static struct i2c_driver sta32x_i2c_driver = { |
1145 | .driver = { | 1145 | .driver = { |
1146 | .name = "sta32x", | 1146 | .name = "sta32x", |
1147 | .owner = THIS_MODULE, | ||
1148 | .of_match_table = of_match_ptr(st32x_dt_ids), | 1147 | .of_match_table = of_match_ptr(st32x_dt_ids), |
1149 | }, | 1148 | }, |
1150 | .probe = sta32x_i2c_probe, | 1149 | .probe = sta32x_i2c_probe, |
diff --git a/sound/soc/codecs/sta350.c b/sound/soc/codecs/sta350.c index bd819a3f205a..33a4612f0a07 100644 --- a/sound/soc/codecs/sta350.c +++ b/sound/soc/codecs/sta350.c | |||
@@ -1264,7 +1264,6 @@ MODULE_DEVICE_TABLE(i2c, sta350_i2c_id); | |||
1264 | static struct i2c_driver sta350_i2c_driver = { | 1264 | static struct i2c_driver sta350_i2c_driver = { |
1265 | .driver = { | 1265 | .driver = { |
1266 | .name = "sta350", | 1266 | .name = "sta350", |
1267 | .owner = THIS_MODULE, | ||
1268 | .of_match_table = of_match_ptr(st350_dt_ids), | 1267 | .of_match_table = of_match_ptr(st350_dt_ids), |
1269 | }, | 1268 | }, |
1270 | .probe = sta350_i2c_probe, | 1269 | .probe = sta350_i2c_probe, |
diff --git a/sound/soc/codecs/sta529.c b/sound/soc/codecs/sta529.c index 4f70378b2cfb..3430f444c1ae 100644 --- a/sound/soc/codecs/sta529.c +++ b/sound/soc/codecs/sta529.c | |||
@@ -379,7 +379,6 @@ MODULE_DEVICE_TABLE(i2c, sta529_i2c_id); | |||
379 | static struct i2c_driver sta529_i2c_driver = { | 379 | static struct i2c_driver sta529_i2c_driver = { |
380 | .driver = { | 380 | .driver = { |
381 | .name = "sta529", | 381 | .name = "sta529", |
382 | .owner = THIS_MODULE, | ||
383 | }, | 382 | }, |
384 | .probe = sta529_i2c_probe, | 383 | .probe = sta529_i2c_probe, |
385 | .remove = sta529_i2c_remove, | 384 | .remove = sta529_i2c_remove, |
diff --git a/sound/soc/codecs/tas2552.c b/sound/soc/codecs/tas2552.c index 4f25a7d0efa2..083b6b3e6cd2 100644 --- a/sound/soc/codecs/tas2552.c +++ b/sound/soc/codecs/tas2552.c | |||
@@ -769,7 +769,6 @@ MODULE_DEVICE_TABLE(of, tas2552_of_match); | |||
769 | static struct i2c_driver tas2552_i2c_driver = { | 769 | static struct i2c_driver tas2552_i2c_driver = { |
770 | .driver = { | 770 | .driver = { |
771 | .name = "tas2552", | 771 | .name = "tas2552", |
772 | .owner = THIS_MODULE, | ||
773 | .of_match_table = of_match_ptr(tas2552_of_match), | 772 | .of_match_table = of_match_ptr(tas2552_of_match), |
774 | .pm = &tas2552_pm, | 773 | .pm = &tas2552_pm, |
775 | }, | 774 | }, |
diff --git a/sound/soc/codecs/tas5086.c b/sound/soc/codecs/tas5086.c index 32942bed34b1..0a49fc851577 100644 --- a/sound/soc/codecs/tas5086.c +++ b/sound/soc/codecs/tas5086.c | |||
@@ -994,7 +994,6 @@ static int tas5086_i2c_remove(struct i2c_client *i2c) | |||
994 | static struct i2c_driver tas5086_i2c_driver = { | 994 | static struct i2c_driver tas5086_i2c_driver = { |
995 | .driver = { | 995 | .driver = { |
996 | .name = "tas5086", | 996 | .name = "tas5086", |
997 | .owner = THIS_MODULE, | ||
998 | .of_match_table = of_match_ptr(tas5086_dt_ids), | 997 | .of_match_table = of_match_ptr(tas5086_dt_ids), |
999 | }, | 998 | }, |
1000 | .id_table = tas5086_i2c_id, | 999 | .id_table = tas5086_i2c_id, |
diff --git a/sound/soc/codecs/tfa9879.c b/sound/soc/codecs/tfa9879.c index aab0af681e8c..86d05f01e5f9 100644 --- a/sound/soc/codecs/tfa9879.c +++ b/sound/soc/codecs/tfa9879.c | |||
@@ -314,7 +314,6 @@ MODULE_DEVICE_TABLE(i2c, tfa9879_i2c_id); | |||
314 | static struct i2c_driver tfa9879_i2c_driver = { | 314 | static struct i2c_driver tfa9879_i2c_driver = { |
315 | .driver = { | 315 | .driver = { |
316 | .name = "tfa9879", | 316 | .name = "tfa9879", |
317 | .owner = THIS_MODULE, | ||
318 | }, | 317 | }, |
319 | .probe = tfa9879_i2c_probe, | 318 | .probe = tfa9879_i2c_probe, |
320 | .remove = tfa9879_i2c_remove, | 319 | .remove = tfa9879_i2c_remove, |
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index c4c960f592a1..48dd9b2cd0fa 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c | |||
@@ -1283,7 +1283,6 @@ MODULE_DEVICE_TABLE(i2c, aic31xx_i2c_id); | |||
1283 | static struct i2c_driver aic31xx_i2c_driver = { | 1283 | static struct i2c_driver aic31xx_i2c_driver = { |
1284 | .driver = { | 1284 | .driver = { |
1285 | .name = "tlv320aic31xx-codec", | 1285 | .name = "tlv320aic31xx-codec", |
1286 | .owner = THIS_MODULE, | ||
1287 | .of_match_table = of_match_ptr(tlv320aic31xx_of_match), | 1286 | .of_match_table = of_match_ptr(tlv320aic31xx_of_match), |
1288 | }, | 1287 | }, |
1289 | .probe = aic31xx_i2c_probe, | 1288 | .probe = aic31xx_i2c_probe, |
diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c index ad6cb90e5f9b..f2d3191961e1 100644 --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c | |||
@@ -871,7 +871,6 @@ MODULE_DEVICE_TABLE(of, aic32x4_of_id); | |||
871 | static struct i2c_driver aic32x4_i2c_driver = { | 871 | static struct i2c_driver aic32x4_i2c_driver = { |
872 | .driver = { | 872 | .driver = { |
873 | .name = "tlv320aic32x4", | 873 | .name = "tlv320aic32x4", |
874 | .owner = THIS_MODULE, | ||
875 | .of_match_table = aic32x4_of_id, | 874 | .of_match_table = aic32x4_of_id, |
876 | }, | 875 | }, |
877 | .probe = aic32x4_i2c_probe, | 876 | .probe = aic32x4_i2c_probe, |
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c index a7cf19b53fb2..125a93517cdb 100644 --- a/sound/soc/codecs/tlv320aic3x.c +++ b/sound/soc/codecs/tlv320aic3x.c | |||
@@ -1825,7 +1825,6 @@ MODULE_DEVICE_TABLE(of, tlv320aic3x_of_match); | |||
1825 | static struct i2c_driver aic3x_i2c_driver = { | 1825 | static struct i2c_driver aic3x_i2c_driver = { |
1826 | .driver = { | 1826 | .driver = { |
1827 | .name = "tlv320aic3x-codec", | 1827 | .name = "tlv320aic3x-codec", |
1828 | .owner = THIS_MODULE, | ||
1829 | .of_match_table = of_match_ptr(tlv320aic3x_of_match), | 1828 | .of_match_table = of_match_ptr(tlv320aic3x_of_match), |
1830 | }, | 1829 | }, |
1831 | .probe = aic3x_i2c_probe, | 1830 | .probe = aic3x_i2c_probe, |
diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c index d67a311f0e75..781398fb2841 100644 --- a/sound/soc/codecs/tlv320dac33.c +++ b/sound/soc/codecs/tlv320dac33.c | |||
@@ -1585,7 +1585,6 @@ MODULE_DEVICE_TABLE(i2c, tlv320dac33_i2c_id); | |||
1585 | static struct i2c_driver tlv320dac33_i2c_driver = { | 1585 | static struct i2c_driver tlv320dac33_i2c_driver = { |
1586 | .driver = { | 1586 | .driver = { |
1587 | .name = "tlv320dac33-codec", | 1587 | .name = "tlv320dac33-codec", |
1588 | .owner = THIS_MODULE, | ||
1589 | }, | 1588 | }, |
1590 | .probe = dac33_i2c_probe, | 1589 | .probe = dac33_i2c_probe, |
1591 | .remove = dac33_i2c_remove, | 1590 | .remove = dac33_i2c_remove, |
diff --git a/sound/soc/codecs/tpa6130a2.c b/sound/soc/codecs/tpa6130a2.c index 6fac9e034c48..265c4c38804d 100644 --- a/sound/soc/codecs/tpa6130a2.c +++ b/sound/soc/codecs/tpa6130a2.c | |||
@@ -488,7 +488,6 @@ MODULE_DEVICE_TABLE(of, tpa6130a2_of_match); | |||
488 | static struct i2c_driver tpa6130a2_i2c_driver = { | 488 | static struct i2c_driver tpa6130a2_i2c_driver = { |
489 | .driver = { | 489 | .driver = { |
490 | .name = "tpa6130a2", | 490 | .name = "tpa6130a2", |
491 | .owner = THIS_MODULE, | ||
492 | .of_match_table = of_match_ptr(tpa6130a2_of_match), | 491 | .of_match_table = of_match_ptr(tpa6130a2_of_match), |
493 | }, | 492 | }, |
494 | .probe = tpa6130a2_probe, | 493 | .probe = tpa6130a2_probe, |
diff --git a/sound/soc/codecs/ts3a227e.c b/sound/soc/codecs/ts3a227e.c index ffc6f3028cc5..43568435c208 100644 --- a/sound/soc/codecs/ts3a227e.c +++ b/sound/soc/codecs/ts3a227e.c | |||
@@ -377,7 +377,6 @@ MODULE_DEVICE_TABLE(of, ts3a227e_of_match); | |||
377 | static struct i2c_driver ts3a227e_driver = { | 377 | static struct i2c_driver ts3a227e_driver = { |
378 | .driver = { | 378 | .driver = { |
379 | .name = "ts3a227e", | 379 | .name = "ts3a227e", |
380 | .owner = THIS_MODULE, | ||
381 | .pm = &ts3a227e_pm, | 380 | .pm = &ts3a227e_pm, |
382 | .of_match_table = of_match_ptr(ts3a227e_of_match), | 381 | .of_match_table = of_match_ptr(ts3a227e_of_match), |
383 | }, | 382 | }, |
diff --git a/sound/soc/codecs/uda1380.c b/sound/soc/codecs/uda1380.c index 6e159f59d219..5cafb16ccf1a 100644 --- a/sound/soc/codecs/uda1380.c +++ b/sound/soc/codecs/uda1380.c | |||
@@ -810,7 +810,6 @@ MODULE_DEVICE_TABLE(i2c, uda1380_i2c_id); | |||
810 | static struct i2c_driver uda1380_i2c_driver = { | 810 | static struct i2c_driver uda1380_i2c_driver = { |
811 | .driver = { | 811 | .driver = { |
812 | .name = "uda1380-codec", | 812 | .name = "uda1380-codec", |
813 | .owner = THIS_MODULE, | ||
814 | }, | 813 | }, |
815 | .probe = uda1380_i2c_probe, | 814 | .probe = uda1380_i2c_probe, |
816 | .remove = uda1380_i2c_remove, | 815 | .remove = uda1380_i2c_remove, |
diff --git a/sound/soc/codecs/wm1250-ev1.c b/sound/soc/codecs/wm1250-ev1.c index 048f00568260..ec45c5b220b1 100644 --- a/sound/soc/codecs/wm1250-ev1.c +++ b/sound/soc/codecs/wm1250-ev1.c | |||
@@ -251,7 +251,6 @@ MODULE_DEVICE_TABLE(i2c, wm1250_ev1_i2c_id); | |||
251 | static struct i2c_driver wm1250_ev1_i2c_driver = { | 251 | static struct i2c_driver wm1250_ev1_i2c_driver = { |
252 | .driver = { | 252 | .driver = { |
253 | .name = "wm1250-ev1", | 253 | .name = "wm1250-ev1", |
254 | .owner = THIS_MODULE, | ||
255 | }, | 254 | }, |
256 | .probe = wm1250_ev1_probe, | 255 | .probe = wm1250_ev1_probe, |
257 | .remove = wm1250_ev1_remove, | 256 | .remove = wm1250_ev1_remove, |
diff --git a/sound/soc/codecs/wm2000.c b/sound/soc/codecs/wm2000.c index 21d5402e343f..786abd02b140 100644 --- a/sound/soc/codecs/wm2000.c +++ b/sound/soc/codecs/wm2000.c | |||
@@ -942,7 +942,6 @@ MODULE_DEVICE_TABLE(i2c, wm2000_i2c_id); | |||
942 | static struct i2c_driver wm2000_i2c_driver = { | 942 | static struct i2c_driver wm2000_i2c_driver = { |
943 | .driver = { | 943 | .driver = { |
944 | .name = "wm2000", | 944 | .name = "wm2000", |
945 | .owner = THIS_MODULE, | ||
946 | }, | 945 | }, |
947 | .probe = wm2000_i2c_probe, | 946 | .probe = wm2000_i2c_probe, |
948 | .remove = wm2000_i2c_remove, | 947 | .remove = wm2000_i2c_remove, |
diff --git a/sound/soc/codecs/wm2200.c b/sound/soc/codecs/wm2200.c index c83083285e53..d4fa224d68b1 100644 --- a/sound/soc/codecs/wm2200.c +++ b/sound/soc/codecs/wm2200.c | |||
@@ -2495,7 +2495,6 @@ MODULE_DEVICE_TABLE(i2c, wm2200_i2c_id); | |||
2495 | static struct i2c_driver wm2200_i2c_driver = { | 2495 | static struct i2c_driver wm2200_i2c_driver = { |
2496 | .driver = { | 2496 | .driver = { |
2497 | .name = "wm2200", | 2497 | .name = "wm2200", |
2498 | .owner = THIS_MODULE, | ||
2499 | .pm = &wm2200_pm, | 2498 | .pm = &wm2200_pm, |
2500 | }, | 2499 | }, |
2501 | .probe = wm2200_i2c_probe, | 2500 | .probe = wm2200_i2c_probe, |
diff --git a/sound/soc/codecs/wm5100.c b/sound/soc/codecs/wm5100.c index 4c10cd88c1af..b9594d6feb71 100644 --- a/sound/soc/codecs/wm5100.c +++ b/sound/soc/codecs/wm5100.c | |||
@@ -2722,7 +2722,6 @@ MODULE_DEVICE_TABLE(i2c, wm5100_i2c_id); | |||
2722 | static struct i2c_driver wm5100_i2c_driver = { | 2722 | static struct i2c_driver wm5100_i2c_driver = { |
2723 | .driver = { | 2723 | .driver = { |
2724 | .name = "wm5100", | 2724 | .name = "wm5100", |
2725 | .owner = THIS_MODULE, | ||
2726 | .pm = &wm5100_pm, | 2725 | .pm = &wm5100_pm, |
2727 | }, | 2726 | }, |
2728 | .probe = wm5100_i2c_probe, | 2727 | .probe = wm5100_i2c_probe, |
diff --git a/sound/soc/codecs/wm8510.c b/sound/soc/codecs/wm8510.c index dac5beb4d023..3cff5a699e57 100644 --- a/sound/soc/codecs/wm8510.c +++ b/sound/soc/codecs/wm8510.c | |||
@@ -690,7 +690,6 @@ MODULE_DEVICE_TABLE(i2c, wm8510_i2c_id); | |||
690 | static struct i2c_driver wm8510_i2c_driver = { | 690 | static struct i2c_driver wm8510_i2c_driver = { |
691 | .driver = { | 691 | .driver = { |
692 | .name = "wm8510", | 692 | .name = "wm8510", |
693 | .owner = THIS_MODULE, | ||
694 | .of_match_table = wm8510_of_match, | 693 | .of_match_table = wm8510_of_match, |
695 | }, | 694 | }, |
696 | .probe = wm8510_i2c_probe, | 695 | .probe = wm8510_i2c_probe, |
diff --git a/sound/soc/codecs/wm8523.c b/sound/soc/codecs/wm8523.c index 43ea8ae5f871..5f8fde56e68b 100644 --- a/sound/soc/codecs/wm8523.c +++ b/sound/soc/codecs/wm8523.c | |||
@@ -534,7 +534,6 @@ MODULE_DEVICE_TABLE(i2c, wm8523_i2c_id); | |||
534 | static struct i2c_driver wm8523_i2c_driver = { | 534 | static struct i2c_driver wm8523_i2c_driver = { |
535 | .driver = { | 535 | .driver = { |
536 | .name = "wm8523", | 536 | .name = "wm8523", |
537 | .owner = THIS_MODULE, | ||
538 | .of_match_table = wm8523_of_match, | 537 | .of_match_table = wm8523_of_match, |
539 | }, | 538 | }, |
540 | .probe = wm8523_i2c_probe, | 539 | .probe = wm8523_i2c_probe, |
diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c index 759a7928ac3e..abf60355f7f7 100644 --- a/sound/soc/codecs/wm8580.c +++ b/sound/soc/codecs/wm8580.c | |||
@@ -978,7 +978,6 @@ MODULE_DEVICE_TABLE(i2c, wm8580_i2c_id); | |||
978 | static struct i2c_driver wm8580_i2c_driver = { | 978 | static struct i2c_driver wm8580_i2c_driver = { |
979 | .driver = { | 979 | .driver = { |
980 | .name = "wm8580", | 980 | .name = "wm8580", |
981 | .owner = THIS_MODULE, | ||
982 | .of_match_table = wm8580_of_match, | 981 | .of_match_table = wm8580_of_match, |
983 | }, | 982 | }, |
984 | .probe = wm8580_i2c_probe, | 983 | .probe = wm8580_i2c_probe, |
diff --git a/sound/soc/codecs/wm8711.c b/sound/soc/codecs/wm8711.c index cc8251f09f8a..44b9e0ae7451 100644 --- a/sound/soc/codecs/wm8711.c +++ b/sound/soc/codecs/wm8711.c | |||
@@ -478,7 +478,6 @@ MODULE_DEVICE_TABLE(i2c, wm8711_i2c_id); | |||
478 | static struct i2c_driver wm8711_i2c_driver = { | 478 | static struct i2c_driver wm8711_i2c_driver = { |
479 | .driver = { | 479 | .driver = { |
480 | .name = "wm8711", | 480 | .name = "wm8711", |
481 | .owner = THIS_MODULE, | ||
482 | .of_match_table = wm8711_of_match, | 481 | .of_match_table = wm8711_of_match, |
483 | }, | 482 | }, |
484 | .probe = wm8711_i2c_probe, | 483 | .probe = wm8711_i2c_probe, |
diff --git a/sound/soc/codecs/wm8728.c b/sound/soc/codecs/wm8728.c index f1a173e6ec33..cd7b02413ccf 100644 --- a/sound/soc/codecs/wm8728.c +++ b/sound/soc/codecs/wm8728.c | |||
@@ -319,7 +319,6 @@ MODULE_DEVICE_TABLE(i2c, wm8728_i2c_id); | |||
319 | static struct i2c_driver wm8728_i2c_driver = { | 319 | static struct i2c_driver wm8728_i2c_driver = { |
320 | .driver = { | 320 | .driver = { |
321 | .name = "wm8728", | 321 | .name = "wm8728", |
322 | .owner = THIS_MODULE, | ||
323 | .of_match_table = wm8728_of_match, | 322 | .of_match_table = wm8728_of_match, |
324 | }, | 323 | }, |
325 | .probe = wm8728_i2c_probe, | 324 | .probe = wm8728_i2c_probe, |
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c index 915ea11ad4b6..4846842522f3 100644 --- a/sound/soc/codecs/wm8731.c +++ b/sound/soc/codecs/wm8731.c | |||
@@ -789,7 +789,6 @@ MODULE_DEVICE_TABLE(i2c, wm8731_i2c_id); | |||
789 | static struct i2c_driver wm8731_i2c_driver = { | 789 | static struct i2c_driver wm8731_i2c_driver = { |
790 | .driver = { | 790 | .driver = { |
791 | .name = "wm8731", | 791 | .name = "wm8731", |
792 | .owner = THIS_MODULE, | ||
793 | .of_match_table = wm8731_of_match, | 792 | .of_match_table = wm8731_of_match, |
794 | }, | 793 | }, |
795 | .probe = wm8731_i2c_probe, | 794 | .probe = wm8731_i2c_probe, |
diff --git a/sound/soc/codecs/wm8737.c b/sound/soc/codecs/wm8737.c index 6ad606fd8b69..b54a7b78f562 100644 --- a/sound/soc/codecs/wm8737.c +++ b/sound/soc/codecs/wm8737.c | |||
@@ -657,7 +657,6 @@ MODULE_DEVICE_TABLE(i2c, wm8737_i2c_id); | |||
657 | static struct i2c_driver wm8737_i2c_driver = { | 657 | static struct i2c_driver wm8737_i2c_driver = { |
658 | .driver = { | 658 | .driver = { |
659 | .name = "wm8737", | 659 | .name = "wm8737", |
660 | .owner = THIS_MODULE, | ||
661 | .of_match_table = wm8737_of_match, | 660 | .of_match_table = wm8737_of_match, |
662 | }, | 661 | }, |
663 | .probe = wm8737_i2c_probe, | 662 | .probe = wm8737_i2c_probe, |
diff --git a/sound/soc/codecs/wm8741.c b/sound/soc/codecs/wm8741.c index b34623786e35..430fa7ded713 100644 --- a/sound/soc/codecs/wm8741.c +++ b/sound/soc/codecs/wm8741.c | |||
@@ -633,7 +633,6 @@ MODULE_DEVICE_TABLE(i2c, wm8741_i2c_id); | |||
633 | static struct i2c_driver wm8741_i2c_driver = { | 633 | static struct i2c_driver wm8741_i2c_driver = { |
634 | .driver = { | 634 | .driver = { |
635 | .name = "wm8741", | 635 | .name = "wm8741", |
636 | .owner = THIS_MODULE, | ||
637 | .of_match_table = wm8741_of_match, | 636 | .of_match_table = wm8741_of_match, |
638 | }, | 637 | }, |
639 | .probe = wm8741_i2c_probe, | 638 | .probe = wm8741_i2c_probe, |
diff --git a/sound/soc/codecs/wm8750.c b/sound/soc/codecs/wm8750.c index 56d89b0865fa..873933a7966f 100644 --- a/sound/soc/codecs/wm8750.c +++ b/sound/soc/codecs/wm8750.c | |||
@@ -826,7 +826,6 @@ MODULE_DEVICE_TABLE(i2c, wm8750_i2c_id); | |||
826 | static struct i2c_driver wm8750_i2c_driver = { | 826 | static struct i2c_driver wm8750_i2c_driver = { |
827 | .driver = { | 827 | .driver = { |
828 | .name = "wm8750", | 828 | .name = "wm8750", |
829 | .owner = THIS_MODULE, | ||
830 | .of_match_table = wm8750_of_match, | 829 | .of_match_table = wm8750_of_match, |
831 | }, | 830 | }, |
832 | .probe = wm8750_i2c_probe, | 831 | .probe = wm8750_i2c_probe, |
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index feb2997a377a..b5e50ffbf99f 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
@@ -1609,7 +1609,6 @@ MODULE_DEVICE_TABLE(i2c, wm8753_i2c_id); | |||
1609 | static struct i2c_driver wm8753_i2c_driver = { | 1609 | static struct i2c_driver wm8753_i2c_driver = { |
1610 | .driver = { | 1610 | .driver = { |
1611 | .name = "wm8753", | 1611 | .name = "wm8753", |
1612 | .owner = THIS_MODULE, | ||
1613 | .of_match_table = wm8753_of_match, | 1612 | .of_match_table = wm8753_of_match, |
1614 | }, | 1613 | }, |
1615 | .probe = wm8753_i2c_probe, | 1614 | .probe = wm8753_i2c_probe, |
diff --git a/sound/soc/codecs/wm8776.c b/sound/soc/codecs/wm8776.c index ece9b4456767..592866dd60c7 100644 --- a/sound/soc/codecs/wm8776.c +++ b/sound/soc/codecs/wm8776.c | |||
@@ -536,7 +536,6 @@ MODULE_DEVICE_TABLE(i2c, wm8776_i2c_id); | |||
536 | static struct i2c_driver wm8776_i2c_driver = { | 536 | static struct i2c_driver wm8776_i2c_driver = { |
537 | .driver = { | 537 | .driver = { |
538 | .name = "wm8776", | 538 | .name = "wm8776", |
539 | .owner = THIS_MODULE, | ||
540 | .of_match_table = wm8776_of_match, | 539 | .of_match_table = wm8776_of_match, |
541 | }, | 540 | }, |
542 | .probe = wm8776_i2c_probe, | 541 | .probe = wm8776_i2c_probe, |
diff --git a/sound/soc/codecs/wm8804-i2c.c b/sound/soc/codecs/wm8804-i2c.c index 6596f5f3a0c3..f27464c2c5ba 100644 --- a/sound/soc/codecs/wm8804-i2c.c +++ b/sound/soc/codecs/wm8804-i2c.c | |||
@@ -49,7 +49,6 @@ MODULE_DEVICE_TABLE(of, wm8804_of_match); | |||
49 | static struct i2c_driver wm8804_i2c_driver = { | 49 | static struct i2c_driver wm8804_i2c_driver = { |
50 | .driver = { | 50 | .driver = { |
51 | .name = "wm8804", | 51 | .name = "wm8804", |
52 | .owner = THIS_MODULE, | ||
53 | .pm = &wm8804_pm, | 52 | .pm = &wm8804_pm, |
54 | .of_match_table = wm8804_of_match, | 53 | .of_match_table = wm8804_of_match, |
55 | }, | 54 | }, |
diff --git a/sound/soc/codecs/wm8900.c b/sound/soc/codecs/wm8900.c index f3759ec5a863..98900aa66dc3 100644 --- a/sound/soc/codecs/wm8900.c +++ b/sound/soc/codecs/wm8900.c | |||
@@ -1312,7 +1312,6 @@ MODULE_DEVICE_TABLE(i2c, wm8900_i2c_id); | |||
1312 | static struct i2c_driver wm8900_i2c_driver = { | 1312 | static struct i2c_driver wm8900_i2c_driver = { |
1313 | .driver = { | 1313 | .driver = { |
1314 | .name = "wm8900", | 1314 | .name = "wm8900", |
1315 | .owner = THIS_MODULE, | ||
1316 | }, | 1315 | }, |
1317 | .probe = wm8900_i2c_probe, | 1316 | .probe = wm8900_i2c_probe, |
1318 | .remove = wm8900_i2c_remove, | 1317 | .remove = wm8900_i2c_remove, |
diff --git a/sound/soc/codecs/wm8903.c b/sound/soc/codecs/wm8903.c index b5322c1544fb..b011253459af 100644 --- a/sound/soc/codecs/wm8903.c +++ b/sound/soc/codecs/wm8903.c | |||
@@ -2193,7 +2193,6 @@ MODULE_DEVICE_TABLE(i2c, wm8903_i2c_id); | |||
2193 | static struct i2c_driver wm8903_i2c_driver = { | 2193 | static struct i2c_driver wm8903_i2c_driver = { |
2194 | .driver = { | 2194 | .driver = { |
2195 | .name = "wm8903", | 2195 | .name = "wm8903", |
2196 | .owner = THIS_MODULE, | ||
2197 | .of_match_table = wm8903_of_match, | 2196 | .of_match_table = wm8903_of_match, |
2198 | }, | 2197 | }, |
2199 | .probe = wm8903_i2c_probe, | 2198 | .probe = wm8903_i2c_probe, |
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c index 265a4a58a2d1..145f5f9d581b 100644 --- a/sound/soc/codecs/wm8904.c +++ b/sound/soc/codecs/wm8904.c | |||
@@ -2292,7 +2292,6 @@ MODULE_DEVICE_TABLE(i2c, wm8904_i2c_id); | |||
2292 | static struct i2c_driver wm8904_i2c_driver = { | 2292 | static struct i2c_driver wm8904_i2c_driver = { |
2293 | .driver = { | 2293 | .driver = { |
2294 | .name = "wm8904", | 2294 | .name = "wm8904", |
2295 | .owner = THIS_MODULE, | ||
2296 | .of_match_table = of_match_ptr(wm8904_of_match), | 2295 | .of_match_table = of_match_ptr(wm8904_of_match), |
2297 | }, | 2296 | }, |
2298 | .probe = wm8904_i2c_probe, | 2297 | .probe = wm8904_i2c_probe, |
diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index 98ef0ba5c2a4..f6f9395ea38e 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c | |||
@@ -787,7 +787,6 @@ MODULE_DEVICE_TABLE(i2c, wm8940_i2c_id); | |||
787 | static struct i2c_driver wm8940_i2c_driver = { | 787 | static struct i2c_driver wm8940_i2c_driver = { |
788 | .driver = { | 788 | .driver = { |
789 | .name = "wm8940", | 789 | .name = "wm8940", |
790 | .owner = THIS_MODULE, | ||
791 | }, | 790 | }, |
792 | .probe = wm8940_i2c_probe, | 791 | .probe = wm8940_i2c_probe, |
793 | .remove = wm8940_i2c_remove, | 792 | .remove = wm8940_i2c_remove, |
diff --git a/sound/soc/codecs/wm8955.c b/sound/soc/codecs/wm8955.c index 2d591c24704b..12e4435f00f8 100644 --- a/sound/soc/codecs/wm8955.c +++ b/sound/soc/codecs/wm8955.c | |||
@@ -1009,7 +1009,6 @@ MODULE_DEVICE_TABLE(i2c, wm8955_i2c_id); | |||
1009 | static struct i2c_driver wm8955_i2c_driver = { | 1009 | static struct i2c_driver wm8955_i2c_driver = { |
1010 | .driver = { | 1010 | .driver = { |
1011 | .name = "wm8955", | 1011 | .name = "wm8955", |
1012 | .owner = THIS_MODULE, | ||
1013 | }, | 1012 | }, |
1014 | .probe = wm8955_i2c_probe, | 1013 | .probe = wm8955_i2c_probe, |
1015 | .remove = wm8955_i2c_remove, | 1014 | .remove = wm8955_i2c_remove, |
diff --git a/sound/soc/codecs/wm8960.c b/sound/soc/codecs/wm8960.c index 94c5c4681ce5..1ed0720b41f0 100644 --- a/sound/soc/codecs/wm8960.c +++ b/sound/soc/codecs/wm8960.c | |||
@@ -1216,7 +1216,6 @@ MODULE_DEVICE_TABLE(of, wm8960_of_match); | |||
1216 | static struct i2c_driver wm8960_i2c_driver = { | 1216 | static struct i2c_driver wm8960_i2c_driver = { |
1217 | .driver = { | 1217 | .driver = { |
1218 | .name = "wm8960", | 1218 | .name = "wm8960", |
1219 | .owner = THIS_MODULE, | ||
1220 | .of_match_table = wm8960_of_match, | 1219 | .of_match_table = wm8960_of_match, |
1221 | }, | 1220 | }, |
1222 | .probe = wm8960_i2c_probe, | 1221 | .probe = wm8960_i2c_probe, |
diff --git a/sound/soc/codecs/wm8961.c b/sound/soc/codecs/wm8961.c index a057662632ff..20a010344fd5 100644 --- a/sound/soc/codecs/wm8961.c +++ b/sound/soc/codecs/wm8961.c | |||
@@ -982,7 +982,6 @@ MODULE_DEVICE_TABLE(i2c, wm8961_i2c_id); | |||
982 | static struct i2c_driver wm8961_i2c_driver = { | 982 | static struct i2c_driver wm8961_i2c_driver = { |
983 | .driver = { | 983 | .driver = { |
984 | .name = "wm8961", | 984 | .name = "wm8961", |
985 | .owner = THIS_MODULE, | ||
986 | }, | 985 | }, |
987 | .probe = wm8961_i2c_probe, | 986 | .probe = wm8961_i2c_probe, |
988 | .remove = wm8961_i2c_remove, | 987 | .remove = wm8961_i2c_remove, |
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index c5748fd4f296..40c4617e3ef1 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c | |||
@@ -3878,7 +3878,6 @@ MODULE_DEVICE_TABLE(of, wm8962_of_match); | |||
3878 | static struct i2c_driver wm8962_i2c_driver = { | 3878 | static struct i2c_driver wm8962_i2c_driver = { |
3879 | .driver = { | 3879 | .driver = { |
3880 | .name = "wm8962", | 3880 | .name = "wm8962", |
3881 | .owner = THIS_MODULE, | ||
3882 | .of_match_table = wm8962_of_match, | 3881 | .of_match_table = wm8962_of_match, |
3883 | .pm = &wm8962_pm, | 3882 | .pm = &wm8962_pm, |
3884 | }, | 3883 | }, |
diff --git a/sound/soc/codecs/wm8971.c b/sound/soc/codecs/wm8971.c index b51184c4e816..2cdde32c43c6 100644 --- a/sound/soc/codecs/wm8971.c +++ b/sound/soc/codecs/wm8971.c | |||
@@ -710,7 +710,6 @@ MODULE_DEVICE_TABLE(i2c, wm8971_i2c_id); | |||
710 | static struct i2c_driver wm8971_i2c_driver = { | 710 | static struct i2c_driver wm8971_i2c_driver = { |
711 | .driver = { | 711 | .driver = { |
712 | .name = "wm8971", | 712 | .name = "wm8971", |
713 | .owner = THIS_MODULE, | ||
714 | }, | 713 | }, |
715 | .probe = wm8971_i2c_probe, | 714 | .probe = wm8971_i2c_probe, |
716 | .remove = wm8971_i2c_remove, | 715 | .remove = wm8971_i2c_remove, |
diff --git a/sound/soc/codecs/wm8974.c b/sound/soc/codecs/wm8974.c index 33b16a7ba82e..0a60677397b3 100644 --- a/sound/soc/codecs/wm8974.c +++ b/sound/soc/codecs/wm8974.c | |||
@@ -634,7 +634,6 @@ MODULE_DEVICE_TABLE(i2c, wm8974_i2c_id); | |||
634 | static struct i2c_driver wm8974_i2c_driver = { | 634 | static struct i2c_driver wm8974_i2c_driver = { |
635 | .driver = { | 635 | .driver = { |
636 | .name = "wm8974", | 636 | .name = "wm8974", |
637 | .owner = THIS_MODULE, | ||
638 | }, | 637 | }, |
639 | .probe = wm8974_i2c_probe, | 638 | .probe = wm8974_i2c_probe, |
640 | .remove = wm8974_i2c_remove, | 639 | .remove = wm8974_i2c_remove, |
diff --git a/sound/soc/codecs/wm8978.c b/sound/soc/codecs/wm8978.c index cfc8cdf49970..d36d6001fbb7 100644 --- a/sound/soc/codecs/wm8978.c +++ b/sound/soc/codecs/wm8978.c | |||
@@ -1072,7 +1072,6 @@ MODULE_DEVICE_TABLE(i2c, wm8978_i2c_id); | |||
1072 | static struct i2c_driver wm8978_i2c_driver = { | 1072 | static struct i2c_driver wm8978_i2c_driver = { |
1073 | .driver = { | 1073 | .driver = { |
1074 | .name = "wm8978", | 1074 | .name = "wm8978", |
1075 | .owner = THIS_MODULE, | ||
1076 | }, | 1075 | }, |
1077 | .probe = wm8978_i2c_probe, | 1076 | .probe = wm8978_i2c_probe, |
1078 | .remove = wm8978_i2c_remove, | 1077 | .remove = wm8978_i2c_remove, |
diff --git a/sound/soc/codecs/wm8983.c b/sound/soc/codecs/wm8983.c index 2fdd2c6cc09d..f6861cc4c321 100644 --- a/sound/soc/codecs/wm8983.c +++ b/sound/soc/codecs/wm8983.c | |||
@@ -1133,7 +1133,6 @@ MODULE_DEVICE_TABLE(i2c, wm8983_i2c_id); | |||
1133 | static struct i2c_driver wm8983_i2c_driver = { | 1133 | static struct i2c_driver wm8983_i2c_driver = { |
1134 | .driver = { | 1134 | .driver = { |
1135 | .name = "wm8983", | 1135 | .name = "wm8983", |
1136 | .owner = THIS_MODULE, | ||
1137 | }, | 1136 | }, |
1138 | .probe = wm8983_i2c_probe, | 1137 | .probe = wm8983_i2c_probe, |
1139 | .remove = wm8983_i2c_remove, | 1138 | .remove = wm8983_i2c_remove, |
diff --git a/sound/soc/codecs/wm8985.c b/sound/soc/codecs/wm8985.c index 8a85f5004d41..9c3c1517a4f3 100644 --- a/sound/soc/codecs/wm8985.c +++ b/sound/soc/codecs/wm8985.c | |||
@@ -1144,7 +1144,6 @@ MODULE_DEVICE_TABLE(i2c, wm8985_i2c_id); | |||
1144 | static struct i2c_driver wm8985_i2c_driver = { | 1144 | static struct i2c_driver wm8985_i2c_driver = { |
1145 | .driver = { | 1145 | .driver = { |
1146 | .name = "wm8985", | 1146 | .name = "wm8985", |
1147 | .owner = THIS_MODULE, | ||
1148 | }, | 1147 | }, |
1149 | .probe = wm8985_i2c_probe, | 1148 | .probe = wm8985_i2c_probe, |
1150 | .remove = wm8985_i2c_remove, | 1149 | .remove = wm8985_i2c_remove, |
diff --git a/sound/soc/codecs/wm8988.c b/sound/soc/codecs/wm8988.c index f13a995af277..c88ce99ce9e1 100644 --- a/sound/soc/codecs/wm8988.c +++ b/sound/soc/codecs/wm8988.c | |||
@@ -919,7 +919,6 @@ MODULE_DEVICE_TABLE(i2c, wm8988_i2c_id); | |||
919 | static struct i2c_driver wm8988_i2c_driver = { | 919 | static struct i2c_driver wm8988_i2c_driver = { |
920 | .driver = { | 920 | .driver = { |
921 | .name = "wm8988", | 921 | .name = "wm8988", |
922 | .owner = THIS_MODULE, | ||
923 | }, | 922 | }, |
924 | .probe = wm8988_i2c_probe, | 923 | .probe = wm8988_i2c_probe, |
925 | .remove = wm8988_i2c_remove, | 924 | .remove = wm8988_i2c_remove, |
diff --git a/sound/soc/codecs/wm8990.c b/sound/soc/codecs/wm8990.c index 1993fd2a6f15..83d72d8bc51b 100644 --- a/sound/soc/codecs/wm8990.c +++ b/sound/soc/codecs/wm8990.c | |||
@@ -1356,7 +1356,6 @@ MODULE_DEVICE_TABLE(i2c, wm8990_i2c_id); | |||
1356 | static struct i2c_driver wm8990_i2c_driver = { | 1356 | static struct i2c_driver wm8990_i2c_driver = { |
1357 | .driver = { | 1357 | .driver = { |
1358 | .name = "wm8990", | 1358 | .name = "wm8990", |
1359 | .owner = THIS_MODULE, | ||
1360 | }, | 1359 | }, |
1361 | .probe = wm8990_i2c_probe, | 1360 | .probe = wm8990_i2c_probe, |
1362 | .remove = wm8990_i2c_remove, | 1361 | .remove = wm8990_i2c_remove, |
diff --git a/sound/soc/codecs/wm8991.c b/sound/soc/codecs/wm8991.c index 44a677720828..709d16e338d9 100644 --- a/sound/soc/codecs/wm8991.c +++ b/sound/soc/codecs/wm8991.c | |||
@@ -1363,7 +1363,6 @@ MODULE_DEVICE_TABLE(i2c, wm8991_i2c_id); | |||
1363 | static struct i2c_driver wm8991_i2c_driver = { | 1363 | static struct i2c_driver wm8991_i2c_driver = { |
1364 | .driver = { | 1364 | .driver = { |
1365 | .name = "wm8991", | 1365 | .name = "wm8991", |
1366 | .owner = THIS_MODULE, | ||
1367 | }, | 1366 | }, |
1368 | .probe = wm8991_i2c_probe, | 1367 | .probe = wm8991_i2c_probe, |
1369 | .remove = wm8991_i2c_remove, | 1368 | .remove = wm8991_i2c_remove, |
diff --git a/sound/soc/codecs/wm8993.c b/sound/soc/codecs/wm8993.c index 8a8db8605dc2..3f4dfb95d2d7 100644 --- a/sound/soc/codecs/wm8993.c +++ b/sound/soc/codecs/wm8993.c | |||
@@ -1742,7 +1742,6 @@ MODULE_DEVICE_TABLE(i2c, wm8993_i2c_id); | |||
1742 | static struct i2c_driver wm8993_i2c_driver = { | 1742 | static struct i2c_driver wm8993_i2c_driver = { |
1743 | .driver = { | 1743 | .driver = { |
1744 | .name = "wm8993", | 1744 | .name = "wm8993", |
1745 | .owner = THIS_MODULE, | ||
1746 | }, | 1745 | }, |
1747 | .probe = wm8993_i2c_probe, | 1746 | .probe = wm8993_i2c_probe, |
1748 | .remove = wm8993_i2c_remove, | 1747 | .remove = wm8993_i2c_remove, |
diff --git a/sound/soc/codecs/wm8995.c b/sound/soc/codecs/wm8995.c index 505b65f5734f..eda52a96c1fa 100644 --- a/sound/soc/codecs/wm8995.c +++ b/sound/soc/codecs/wm8995.c | |||
@@ -2298,7 +2298,6 @@ MODULE_DEVICE_TABLE(i2c, wm8995_i2c_id); | |||
2298 | static struct i2c_driver wm8995_i2c_driver = { | 2298 | static struct i2c_driver wm8995_i2c_driver = { |
2299 | .driver = { | 2299 | .driver = { |
2300 | .name = "wm8995", | 2300 | .name = "wm8995", |
2301 | .owner = THIS_MODULE, | ||
2302 | }, | 2301 | }, |
2303 | .probe = wm8995_i2c_probe, | 2302 | .probe = wm8995_i2c_probe, |
2304 | .remove = wm8995_i2c_remove, | 2303 | .remove = wm8995_i2c_remove, |
diff --git a/sound/soc/codecs/wm8996.c b/sound/soc/codecs/wm8996.c index 3dd063f682b2..29b6688fb6ee 100644 --- a/sound/soc/codecs/wm8996.c +++ b/sound/soc/codecs/wm8996.c | |||
@@ -3100,7 +3100,6 @@ MODULE_DEVICE_TABLE(i2c, wm8996_i2c_id); | |||
3100 | static struct i2c_driver wm8996_i2c_driver = { | 3100 | static struct i2c_driver wm8996_i2c_driver = { |
3101 | .driver = { | 3101 | .driver = { |
3102 | .name = "wm8996", | 3102 | .name = "wm8996", |
3103 | .owner = THIS_MODULE, | ||
3104 | }, | 3103 | }, |
3105 | .probe = wm8996_i2c_probe, | 3104 | .probe = wm8996_i2c_probe, |
3106 | .remove = wm8996_i2c_remove, | 3105 | .remove = wm8996_i2c_remove, |
diff --git a/sound/soc/codecs/wm9081.c b/sound/soc/codecs/wm9081.c index 8a8b1c0f9142..011516eec4b5 100644 --- a/sound/soc/codecs/wm9081.c +++ b/sound/soc/codecs/wm9081.c | |||
@@ -1378,7 +1378,6 @@ MODULE_DEVICE_TABLE(i2c, wm9081_i2c_id); | |||
1378 | static struct i2c_driver wm9081_i2c_driver = { | 1378 | static struct i2c_driver wm9081_i2c_driver = { |
1379 | .driver = { | 1379 | .driver = { |
1380 | .name = "wm9081", | 1380 | .name = "wm9081", |
1381 | .owner = THIS_MODULE, | ||
1382 | }, | 1381 | }, |
1383 | .probe = wm9081_i2c_probe, | 1382 | .probe = wm9081_i2c_probe, |
1384 | .remove = wm9081_i2c_remove, | 1383 | .remove = wm9081_i2c_remove, |
diff --git a/sound/soc/codecs/wm9090.c b/sound/soc/codecs/wm9090.c index 13d23fc797db..12baf725d4a5 100644 --- a/sound/soc/codecs/wm9090.c +++ b/sound/soc/codecs/wm9090.c | |||
@@ -636,7 +636,6 @@ MODULE_DEVICE_TABLE(i2c, wm9090_id); | |||
636 | static struct i2c_driver wm9090_i2c_driver = { | 636 | static struct i2c_driver wm9090_i2c_driver = { |
637 | .driver = { | 637 | .driver = { |
638 | .name = "wm9090", | 638 | .name = "wm9090", |
639 | .owner = THIS_MODULE, | ||
640 | }, | 639 | }, |
641 | .probe = wm9090_i2c_probe, | 640 | .probe = wm9090_i2c_probe, |
642 | .remove = wm9090_i2c_remove, | 641 | .remove = wm9090_i2c_remove, |