diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 16:15:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-05 16:15:12 -0500 |
commit | 75f5db39ff14ed95056f2cca3ad98c3cae97170c (patch) | |
tree | f265bdbda7dc9fab1bc07bca2449f9fc79c99f25 /sound | |
parent | 52787e91bf5375e68e90f381bd157bd92e1f4a77 (diff) | |
parent | c70efb85153162295dc80099e95dab93d486a3ed (diff) |
Merge tag 'spi-v4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
Pull spi updates from Mark Brown:
"Quite a lot of activity in SPI this cycle, almost all of it in drivers
with a few minor improvements and tweaks in the core.
- Updates to pxa2xx to support Intel Broxton and multiple chip selects.
- Support for big endian in the bcm63xx driver.
- Multiple slave support for the mt8173
- New driver for the auxiliary SPI controller in bcm2835 SoCs.
- Support for Layerscale SoCs in the Freescale DSPI driver"
* tag 'spi-v4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: (87 commits)
spi: pxa2xx: Rework self-initiated platform data creation for non-ACPI
spi: pxa2xx: Add support for Intel Broxton
spi: pxa2xx: Detect number of enabled Intel LPSS SPI chip select signals
spi: pxa2xx: Add output control for multiple Intel LPSS chip selects
spi: pxa2xx: Use LPSS prefix for defines that are Intel LPSS specific
spi: Add DSPI support for layerscape family
spi: ti-qspi: improve ->remove() callback
spi/spi-xilinx: Fix race condition on last word read
spi: Drop owner assignment from spi_drivers
spi: Add THIS_MODULE to spi_driver in SPI core
spi: Setup the master controller driver before setting the chipselect
spi: dw: replace magic constant by DW_SPI_DR
spi: mediatek: mt8173 spi multiple devices support
spi: mediatek: handle controller_data in mtk_spi_setup
spi: mediatek: remove mtk_spi_config
spi: mediatek: Update document devicetree bindings to support multiple devices
spi: fix kernel-doc warnings about missing return desc in spi.c
spi: fix kernel-doc warnings about missing return desc in spi.h
spi: pxa2xx: Align a few defines
spi: pxa2xx: Save other reg_cs_ctrl bits when configuring chip select
...
Diffstat (limited to 'sound')
32 files changed, 0 insertions, 32 deletions
diff --git a/sound/soc/codecs/ad1836.c b/sound/soc/codecs/ad1836.c index 95f0bec26a1b..e2ce6c4d7ece 100644 --- a/sound/soc/codecs/ad1836.c +++ b/sound/soc/codecs/ad1836.c | |||
@@ -404,7 +404,6 @@ MODULE_DEVICE_TABLE(spi, ad1836_ids); | |||
404 | static struct spi_driver ad1836_spi_driver = { | 404 | static struct spi_driver ad1836_spi_driver = { |
405 | .driver = { | 405 | .driver = { |
406 | .name = "ad1836", | 406 | .name = "ad1836", |
407 | .owner = THIS_MODULE, | ||
408 | }, | 407 | }, |
409 | .probe = ad1836_spi_probe, | 408 | .probe = ad1836_spi_probe, |
410 | .remove = ad1836_spi_remove, | 409 | .remove = ad1836_spi_remove, |
diff --git a/sound/soc/codecs/ad193x-spi.c b/sound/soc/codecs/ad193x-spi.c index 390cef9b9dc2..8199a3de0024 100644 --- a/sound/soc/codecs/ad193x-spi.c +++ b/sound/soc/codecs/ad193x-spi.c | |||
@@ -36,7 +36,6 @@ static int ad193x_spi_remove(struct spi_device *spi) | |||
36 | static struct spi_driver ad193x_spi_driver = { | 36 | static struct spi_driver ad193x_spi_driver = { |
37 | .driver = { | 37 | .driver = { |
38 | .name = "ad193x", | 38 | .name = "ad193x", |
39 | .owner = THIS_MODULE, | ||
40 | }, | 39 | }, |
41 | .probe = ad193x_spi_probe, | 40 | .probe = ad193x_spi_probe, |
42 | .remove = ad193x_spi_remove, | 41 | .remove = ad193x_spi_remove, |
diff --git a/sound/soc/codecs/adau1761-spi.c b/sound/soc/codecs/adau1761-spi.c index cce2f11f1ffb..8bc1fbd25fcc 100644 --- a/sound/soc/codecs/adau1761-spi.c +++ b/sound/soc/codecs/adau1761-spi.c | |||
@@ -64,7 +64,6 @@ MODULE_DEVICE_TABLE(spi, adau1761_spi_id); | |||
64 | static struct spi_driver adau1761_spi_driver = { | 64 | static struct spi_driver adau1761_spi_driver = { |
65 | .driver = { | 65 | .driver = { |
66 | .name = "adau1761", | 66 | .name = "adau1761", |
67 | .owner = THIS_MODULE, | ||
68 | }, | 67 | }, |
69 | .probe = adau1761_spi_probe, | 68 | .probe = adau1761_spi_probe, |
70 | .remove = adau1761_spi_remove, | 69 | .remove = adau1761_spi_remove, |
diff --git a/sound/soc/codecs/adau1781-spi.c b/sound/soc/codecs/adau1781-spi.c index 194686716bbe..33a73ff78de4 100644 --- a/sound/soc/codecs/adau1781-spi.c +++ b/sound/soc/codecs/adau1781-spi.c | |||
@@ -62,7 +62,6 @@ MODULE_DEVICE_TABLE(spi, adau1781_spi_id); | |||
62 | static struct spi_driver adau1781_spi_driver = { | 62 | static struct spi_driver adau1781_spi_driver = { |
63 | .driver = { | 63 | .driver = { |
64 | .name = "adau1781", | 64 | .name = "adau1781", |
65 | .owner = THIS_MODULE, | ||
66 | }, | 65 | }, |
67 | .probe = adau1781_spi_probe, | 66 | .probe = adau1781_spi_probe, |
68 | .remove = adau1781_spi_remove, | 67 | .remove = adau1781_spi_remove, |
diff --git a/sound/soc/codecs/adau1977-spi.c b/sound/soc/codecs/adau1977-spi.c index b05cf5da3a94..0b46d88b481c 100644 --- a/sound/soc/codecs/adau1977-spi.c +++ b/sound/soc/codecs/adau1977-spi.c | |||
@@ -63,7 +63,6 @@ MODULE_DEVICE_TABLE(spi, adau1977_spi_ids); | |||
63 | static struct spi_driver adau1977_spi_driver = { | 63 | static struct spi_driver adau1977_spi_driver = { |
64 | .driver = { | 64 | .driver = { |
65 | .name = "adau1977", | 65 | .name = "adau1977", |
66 | .owner = THIS_MODULE, | ||
67 | }, | 66 | }, |
68 | .probe = adau1977_spi_probe, | 67 | .probe = adau1977_spi_probe, |
69 | .remove = adau1977_spi_remove, | 68 | .remove = adau1977_spi_remove, |
diff --git a/sound/soc/codecs/adav801.c b/sound/soc/codecs/adav801.c index 790fce33ab10..055f1228c2b4 100644 --- a/sound/soc/codecs/adav801.c +++ b/sound/soc/codecs/adav801.c | |||
@@ -39,7 +39,6 @@ static int adav80x_spi_remove(struct spi_device *spi) | |||
39 | static struct spi_driver adav80x_spi_driver = { | 39 | static struct spi_driver adav80x_spi_driver = { |
40 | .driver = { | 40 | .driver = { |
41 | .name = "adav801", | 41 | .name = "adav801", |
42 | .owner = THIS_MODULE, | ||
43 | }, | 42 | }, |
44 | .probe = adav80x_spi_probe, | 43 | .probe = adav80x_spi_probe, |
45 | .remove = adav80x_spi_remove, | 44 | .remove = adav80x_spi_remove, |
diff --git a/sound/soc/codecs/ak4104.c b/sound/soc/codecs/ak4104.c index 1fd7f72b2a62..595d02d7602c 100644 --- a/sound/soc/codecs/ak4104.c +++ b/sound/soc/codecs/ak4104.c | |||
@@ -344,7 +344,6 @@ MODULE_DEVICE_TABLE(spi, ak4104_id_table); | |||
344 | static struct spi_driver ak4104_spi_driver = { | 344 | static struct spi_driver ak4104_spi_driver = { |
345 | .driver = { | 345 | .driver = { |
346 | .name = "ak4104", | 346 | .name = "ak4104", |
347 | .owner = THIS_MODULE, | ||
348 | .of_match_table = ak4104_of_match, | 347 | .of_match_table = ak4104_of_match, |
349 | }, | 348 | }, |
350 | .id_table = ak4104_id_table, | 349 | .id_table = ak4104_id_table, |
diff --git a/sound/soc/codecs/cs4271-spi.c b/sound/soc/codecs/cs4271-spi.c index acd49d86e706..1ff5f520196a 100644 --- a/sound/soc/codecs/cs4271-spi.c +++ b/sound/soc/codecs/cs4271-spi.c | |||
@@ -42,7 +42,6 @@ static int cs4271_spi_remove(struct spi_device *spi) | |||
42 | static struct spi_driver cs4271_spi_driver = { | 42 | static struct spi_driver cs4271_spi_driver = { |
43 | .driver = { | 43 | .driver = { |
44 | .name = "cs4271", | 44 | .name = "cs4271", |
45 | .owner = THIS_MODULE, | ||
46 | .of_match_table = of_match_ptr(cs4271_dt_ids), | 45 | .of_match_table = of_match_ptr(cs4271_dt_ids), |
47 | }, | 46 | }, |
48 | .probe = cs4271_spi_probe, | 47 | .probe = cs4271_spi_probe, |
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c index 7dc52fe67c80..af23a61b7b28 100644 --- a/sound/soc/codecs/da7210.c +++ b/sound/soc/codecs/da7210.c | |||
@@ -1339,7 +1339,6 @@ static int da7210_spi_remove(struct spi_device *spi) | |||
1339 | static struct spi_driver da7210_spi_driver = { | 1339 | static struct spi_driver da7210_spi_driver = { |
1340 | .driver = { | 1340 | .driver = { |
1341 | .name = "da7210", | 1341 | .name = "da7210", |
1342 | .owner = THIS_MODULE, | ||
1343 | }, | 1342 | }, |
1344 | .probe = da7210_spi_probe, | 1343 | .probe = da7210_spi_probe, |
1345 | .remove = da7210_spi_remove | 1344 | .remove = da7210_spi_remove |
diff --git a/sound/soc/codecs/pcm1792a.c b/sound/soc/codecs/pcm1792a.c index 57b0c94a710b..08bb4863e96f 100644 --- a/sound/soc/codecs/pcm1792a.c +++ b/sound/soc/codecs/pcm1792a.c | |||
@@ -257,7 +257,6 @@ MODULE_DEVICE_TABLE(spi, pcm1792a_spi_ids); | |||
257 | static struct spi_driver pcm1792a_codec_driver = { | 257 | static struct spi_driver pcm1792a_codec_driver = { |
258 | .driver = { | 258 | .driver = { |
259 | .name = "pcm1792a", | 259 | .name = "pcm1792a", |
260 | .owner = THIS_MODULE, | ||
261 | .of_match_table = of_match_ptr(pcm1792a_of_match), | 260 | .of_match_table = of_match_ptr(pcm1792a_of_match), |
262 | }, | 261 | }, |
263 | .id_table = pcm1792a_spi_ids, | 262 | .id_table = pcm1792a_spi_ids, |
diff --git a/sound/soc/codecs/pcm512x-spi.c b/sound/soc/codecs/pcm512x-spi.c index 7b64a9cef704..712ed6598c48 100644 --- a/sound/soc/codecs/pcm512x-spi.c +++ b/sound/soc/codecs/pcm512x-spi.c | |||
@@ -64,7 +64,6 @@ static struct spi_driver pcm512x_spi_driver = { | |||
64 | .id_table = pcm512x_spi_id, | 64 | .id_table = pcm512x_spi_id, |
65 | .driver = { | 65 | .driver = { |
66 | .name = "pcm512x", | 66 | .name = "pcm512x", |
67 | .owner = THIS_MODULE, | ||
68 | .of_match_table = pcm512x_of_match, | 67 | .of_match_table = pcm512x_of_match, |
69 | .pm = &pcm512x_pm_ops, | 68 | .pm = &pcm512x_pm_ops, |
70 | }, | 69 | }, |
diff --git a/sound/soc/codecs/rt5677-spi.c b/sound/soc/codecs/rt5677-spi.c index 3505aafbade4..91879ea95415 100644 --- a/sound/soc/codecs/rt5677-spi.c +++ b/sound/soc/codecs/rt5677-spi.c | |||
@@ -232,7 +232,6 @@ static int rt5677_spi_probe(struct spi_device *spi) | |||
232 | static struct spi_driver rt5677_spi_driver = { | 232 | static struct spi_driver rt5677_spi_driver = { |
233 | .driver = { | 233 | .driver = { |
234 | .name = "rt5677", | 234 | .name = "rt5677", |
235 | .owner = THIS_MODULE, | ||
236 | }, | 235 | }, |
237 | .probe = rt5677_spi_probe, | 236 | .probe = rt5677_spi_probe, |
238 | }; | 237 | }; |
diff --git a/sound/soc/codecs/ssm2602-spi.c b/sound/soc/codecs/ssm2602-spi.c index b5df14fbe3ad..842f373045c6 100644 --- a/sound/soc/codecs/ssm2602-spi.c +++ b/sound/soc/codecs/ssm2602-spi.c | |||
@@ -35,7 +35,6 @@ MODULE_DEVICE_TABLE(of, ssm2602_of_match); | |||
35 | static struct spi_driver ssm2602_spi_driver = { | 35 | static struct spi_driver ssm2602_spi_driver = { |
36 | .driver = { | 36 | .driver = { |
37 | .name = "ssm2602", | 37 | .name = "ssm2602", |
38 | .owner = THIS_MODULE, | ||
39 | .of_match_table = ssm2602_of_match, | 38 | .of_match_table = ssm2602_of_match, |
40 | }, | 39 | }, |
41 | .probe = ssm2602_spi_probe, | 40 | .probe = ssm2602_spi_probe, |
diff --git a/sound/soc/codecs/tlv320aic23-spi.c b/sound/soc/codecs/tlv320aic23-spi.c index 3b387e41d75d..f801ae051658 100644 --- a/sound/soc/codecs/tlv320aic23-spi.c +++ b/sound/soc/codecs/tlv320aic23-spi.c | |||
@@ -43,7 +43,6 @@ static int aic23_spi_remove(struct spi_device *spi) | |||
43 | static struct spi_driver aic23_spi = { | 43 | static struct spi_driver aic23_spi = { |
44 | .driver = { | 44 | .driver = { |
45 | .name = "tlv320aic23", | 45 | .name = "tlv320aic23", |
46 | .owner = THIS_MODULE, | ||
47 | }, | 46 | }, |
48 | .probe = aic23_spi_probe, | 47 | .probe = aic23_spi_probe, |
49 | .remove = aic23_spi_remove, | 48 | .remove = aic23_spi_remove, |
diff --git a/sound/soc/codecs/tlv320aic26.c b/sound/soc/codecs/tlv320aic26.c index 620ab9ea1ef0..2c904d7150ad 100644 --- a/sound/soc/codecs/tlv320aic26.c +++ b/sound/soc/codecs/tlv320aic26.c | |||
@@ -373,7 +373,6 @@ static int aic26_spi_remove(struct spi_device *spi) | |||
373 | static struct spi_driver aic26_spi = { | 373 | static struct spi_driver aic26_spi = { |
374 | .driver = { | 374 | .driver = { |
375 | .name = "tlv320aic26-codec", | 375 | .name = "tlv320aic26-codec", |
376 | .owner = THIS_MODULE, | ||
377 | }, | 376 | }, |
378 | .probe = aic26_spi_probe, | 377 | .probe = aic26_spi_probe, |
379 | .remove = aic26_spi_remove, | 378 | .remove = aic26_spi_remove, |
diff --git a/sound/soc/codecs/wm0010.c b/sound/soc/codecs/wm0010.c index 581ec1502228..e3c34bdc2772 100644 --- a/sound/soc/codecs/wm0010.c +++ b/sound/soc/codecs/wm0010.c | |||
@@ -998,7 +998,6 @@ static int wm0010_spi_remove(struct spi_device *spi) | |||
998 | static struct spi_driver wm0010_spi_driver = { | 998 | static struct spi_driver wm0010_spi_driver = { |
999 | .driver = { | 999 | .driver = { |
1000 | .name = "wm0010", | 1000 | .name = "wm0010", |
1001 | .owner = THIS_MODULE, | ||
1002 | }, | 1001 | }, |
1003 | .probe = wm0010_spi_probe, | 1002 | .probe = wm0010_spi_probe, |
1004 | .remove = wm0010_spi_remove, | 1003 | .remove = wm0010_spi_remove, |
diff --git a/sound/soc/codecs/wm8510.c b/sound/soc/codecs/wm8510.c index b098a83a44d8..99e40e629cca 100644 --- a/sound/soc/codecs/wm8510.c +++ b/sound/soc/codecs/wm8510.c | |||
@@ -644,7 +644,6 @@ static int wm8510_spi_remove(struct spi_device *spi) | |||
644 | static struct spi_driver wm8510_spi_driver = { | 644 | static struct spi_driver wm8510_spi_driver = { |
645 | .driver = { | 645 | .driver = { |
646 | .name = "wm8510", | 646 | .name = "wm8510", |
647 | .owner = THIS_MODULE, | ||
648 | .of_match_table = wm8510_of_match, | 647 | .of_match_table = wm8510_of_match, |
649 | }, | 648 | }, |
650 | .probe = wm8510_spi_probe, | 649 | .probe = wm8510_spi_probe, |
diff --git a/sound/soc/codecs/wm8711.c b/sound/soc/codecs/wm8711.c index 44b9e0ae7451..c759ec068e97 100644 --- a/sound/soc/codecs/wm8711.c +++ b/sound/soc/codecs/wm8711.c | |||
@@ -431,7 +431,6 @@ static int wm8711_spi_remove(struct spi_device *spi) | |||
431 | static struct spi_driver wm8711_spi_driver = { | 431 | static struct spi_driver wm8711_spi_driver = { |
432 | .driver = { | 432 | .driver = { |
433 | .name = "wm8711", | 433 | .name = "wm8711", |
434 | .owner = THIS_MODULE, | ||
435 | .of_match_table = wm8711_of_match, | 434 | .of_match_table = wm8711_of_match, |
436 | }, | 435 | }, |
437 | .probe = wm8711_spi_probe, | 436 | .probe = wm8711_spi_probe, |
diff --git a/sound/soc/codecs/wm8728.c b/sound/soc/codecs/wm8728.c index cd7b02413ccf..1564e6926527 100644 --- a/sound/soc/codecs/wm8728.c +++ b/sound/soc/codecs/wm8728.c | |||
@@ -272,7 +272,6 @@ static int wm8728_spi_remove(struct spi_device *spi) | |||
272 | static struct spi_driver wm8728_spi_driver = { | 272 | static struct spi_driver wm8728_spi_driver = { |
273 | .driver = { | 273 | .driver = { |
274 | .name = "wm8728", | 274 | .name = "wm8728", |
275 | .owner = THIS_MODULE, | ||
276 | .of_match_table = wm8728_of_match, | 275 | .of_match_table = wm8728_of_match, |
277 | }, | 276 | }, |
278 | .probe = wm8728_spi_probe, | 277 | .probe = wm8728_spi_probe, |
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c index ace8645245a0..15bd547e3c84 100644 --- a/sound/soc/codecs/wm8731.c +++ b/sound/soc/codecs/wm8731.c | |||
@@ -718,7 +718,6 @@ static int wm8731_spi_remove(struct spi_device *spi) | |||
718 | static struct spi_driver wm8731_spi_driver = { | 718 | static struct spi_driver wm8731_spi_driver = { |
719 | .driver = { | 719 | .driver = { |
720 | .name = "wm8731", | 720 | .name = "wm8731", |
721 | .owner = THIS_MODULE, | ||
722 | .of_match_table = wm8731_of_match, | 721 | .of_match_table = wm8731_of_match, |
723 | }, | 722 | }, |
724 | .probe = wm8731_spi_probe, | 723 | .probe = wm8731_spi_probe, |
diff --git a/sound/soc/codecs/wm8737.c b/sound/soc/codecs/wm8737.c index e4a03d98aed4..e7807601e675 100644 --- a/sound/soc/codecs/wm8737.c +++ b/sound/soc/codecs/wm8737.c | |||
@@ -707,7 +707,6 @@ static int wm8737_spi_remove(struct spi_device *spi) | |||
707 | static struct spi_driver wm8737_spi_driver = { | 707 | static struct spi_driver wm8737_spi_driver = { |
708 | .driver = { | 708 | .driver = { |
709 | .name = "wm8737", | 709 | .name = "wm8737", |
710 | .owner = THIS_MODULE, | ||
711 | .of_match_table = wm8737_of_match, | 710 | .of_match_table = wm8737_of_match, |
712 | }, | 711 | }, |
713 | .probe = wm8737_spi_probe, | 712 | .probe = wm8737_spi_probe, |
diff --git a/sound/soc/codecs/wm8741.c b/sound/soc/codecs/wm8741.c index de42c0388772..36ef91fe0511 100644 --- a/sound/soc/codecs/wm8741.c +++ b/sound/soc/codecs/wm8741.c | |||
@@ -657,7 +657,6 @@ static int wm8741_spi_remove(struct spi_device *spi) | |||
657 | static struct spi_driver wm8741_spi_driver = { | 657 | static struct spi_driver wm8741_spi_driver = { |
658 | .driver = { | 658 | .driver = { |
659 | .name = "wm8741", | 659 | .name = "wm8741", |
660 | .owner = THIS_MODULE, | ||
661 | .of_match_table = wm8741_of_match, | 660 | .of_match_table = wm8741_of_match, |
662 | }, | 661 | }, |
663 | .probe = wm8741_spi_probe, | 662 | .probe = wm8741_spi_probe, |
diff --git a/sound/soc/codecs/wm8750.c b/sound/soc/codecs/wm8750.c index 873933a7966f..bd9dcd2161bc 100644 --- a/sound/soc/codecs/wm8750.c +++ b/sound/soc/codecs/wm8750.c | |||
@@ -777,7 +777,6 @@ MODULE_DEVICE_TABLE(spi, wm8750_spi_ids); | |||
777 | static struct spi_driver wm8750_spi_driver = { | 777 | static struct spi_driver wm8750_spi_driver = { |
778 | .driver = { | 778 | .driver = { |
779 | .name = "wm8750", | 779 | .name = "wm8750", |
780 | .owner = THIS_MODULE, | ||
781 | .of_match_table = wm8750_of_match, | 780 | .of_match_table = wm8750_of_match, |
782 | }, | 781 | }, |
783 | .id_table = wm8750_spi_ids, | 782 | .id_table = wm8750_spi_ids, |
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index a801c6d75436..61299ca372ff 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
@@ -1549,7 +1549,6 @@ static int wm8753_spi_remove(struct spi_device *spi) | |||
1549 | static struct spi_driver wm8753_spi_driver = { | 1549 | static struct spi_driver wm8753_spi_driver = { |
1550 | .driver = { | 1550 | .driver = { |
1551 | .name = "wm8753", | 1551 | .name = "wm8753", |
1552 | .owner = THIS_MODULE, | ||
1553 | .of_match_table = wm8753_of_match, | 1552 | .of_match_table = wm8753_of_match, |
1554 | }, | 1553 | }, |
1555 | .probe = wm8753_spi_probe, | 1554 | .probe = wm8753_spi_probe, |
diff --git a/sound/soc/codecs/wm8770.c b/sound/soc/codecs/wm8770.c index 66c1f151071d..df6178464b00 100644 --- a/sound/soc/codecs/wm8770.c +++ b/sound/soc/codecs/wm8770.c | |||
@@ -703,7 +703,6 @@ static int wm8770_spi_remove(struct spi_device *spi) | |||
703 | static struct spi_driver wm8770_spi_driver = { | 703 | static struct spi_driver wm8770_spi_driver = { |
704 | .driver = { | 704 | .driver = { |
705 | .name = "wm8770", | 705 | .name = "wm8770", |
706 | .owner = THIS_MODULE, | ||
707 | .of_match_table = wm8770_of_match, | 706 | .of_match_table = wm8770_of_match, |
708 | }, | 707 | }, |
709 | .probe = wm8770_spi_probe, | 708 | .probe = wm8770_spi_probe, |
diff --git a/sound/soc/codecs/wm8776.c b/sound/soc/codecs/wm8776.c index 183c9a4966c5..5af44f9a8cf2 100644 --- a/sound/soc/codecs/wm8776.c +++ b/sound/soc/codecs/wm8776.c | |||
@@ -488,7 +488,6 @@ static int wm8776_spi_remove(struct spi_device *spi) | |||
488 | static struct spi_driver wm8776_spi_driver = { | 488 | static struct spi_driver wm8776_spi_driver = { |
489 | .driver = { | 489 | .driver = { |
490 | .name = "wm8776", | 490 | .name = "wm8776", |
491 | .owner = THIS_MODULE, | ||
492 | .of_match_table = wm8776_of_match, | 491 | .of_match_table = wm8776_of_match, |
493 | }, | 492 | }, |
494 | .probe = wm8776_spi_probe, | 493 | .probe = wm8776_spi_probe, |
diff --git a/sound/soc/codecs/wm8804-spi.c b/sound/soc/codecs/wm8804-spi.c index 407a3cf391e5..9998c78a2325 100644 --- a/sound/soc/codecs/wm8804-spi.c +++ b/sound/soc/codecs/wm8804-spi.c | |||
@@ -42,7 +42,6 @@ MODULE_DEVICE_TABLE(of, wm8804_of_match); | |||
42 | static struct spi_driver wm8804_spi_driver = { | 42 | static struct spi_driver wm8804_spi_driver = { |
43 | .driver = { | 43 | .driver = { |
44 | .name = "wm8804", | 44 | .name = "wm8804", |
45 | .owner = THIS_MODULE, | ||
46 | .pm = &wm8804_pm, | 45 | .pm = &wm8804_pm, |
47 | .of_match_table = wm8804_of_match, | 46 | .of_match_table = wm8804_of_match, |
48 | }, | 47 | }, |
diff --git a/sound/soc/codecs/wm8900.c b/sound/soc/codecs/wm8900.c index 98900aa66dc3..5d8dca88d612 100644 --- a/sound/soc/codecs/wm8900.c +++ b/sound/soc/codecs/wm8900.c | |||
@@ -1266,7 +1266,6 @@ static int wm8900_spi_remove(struct spi_device *spi) | |||
1266 | static struct spi_driver wm8900_spi_driver = { | 1266 | static struct spi_driver wm8900_spi_driver = { |
1267 | .driver = { | 1267 | .driver = { |
1268 | .name = "wm8900", | 1268 | .name = "wm8900", |
1269 | .owner = THIS_MODULE, | ||
1270 | }, | 1269 | }, |
1271 | .probe = wm8900_spi_probe, | 1270 | .probe = wm8900_spi_probe, |
1272 | .remove = wm8900_spi_remove, | 1271 | .remove = wm8900_spi_remove, |
diff --git a/sound/soc/codecs/wm8983.c b/sound/soc/codecs/wm8983.c index f3193fb751cc..7350ff654bbf 100644 --- a/sound/soc/codecs/wm8983.c +++ b/sound/soc/codecs/wm8983.c | |||
@@ -1033,7 +1033,6 @@ static int wm8983_spi_remove(struct spi_device *spi) | |||
1033 | static struct spi_driver wm8983_spi_driver = { | 1033 | static struct spi_driver wm8983_spi_driver = { |
1034 | .driver = { | 1034 | .driver = { |
1035 | .name = "wm8983", | 1035 | .name = "wm8983", |
1036 | .owner = THIS_MODULE, | ||
1037 | }, | 1036 | }, |
1038 | .probe = wm8983_spi_probe, | 1037 | .probe = wm8983_spi_probe, |
1039 | .remove = wm8983_spi_remove | 1038 | .remove = wm8983_spi_remove |
diff --git a/sound/soc/codecs/wm8985.c b/sound/soc/codecs/wm8985.c index 9c3c1517a4f3..9918152a03c7 100644 --- a/sound/soc/codecs/wm8985.c +++ b/sound/soc/codecs/wm8985.c | |||
@@ -1096,7 +1096,6 @@ static int wm8985_spi_remove(struct spi_device *spi) | |||
1096 | static struct spi_driver wm8985_spi_driver = { | 1096 | static struct spi_driver wm8985_spi_driver = { |
1097 | .driver = { | 1097 | .driver = { |
1098 | .name = "wm8985", | 1098 | .name = "wm8985", |
1099 | .owner = THIS_MODULE, | ||
1100 | }, | 1099 | }, |
1101 | .probe = wm8985_spi_probe, | 1100 | .probe = wm8985_spi_probe, |
1102 | .remove = wm8985_spi_remove | 1101 | .remove = wm8985_spi_remove |
diff --git a/sound/soc/codecs/wm8988.c b/sound/soc/codecs/wm8988.c index c88ce99ce9e1..895721a256f0 100644 --- a/sound/soc/codecs/wm8988.c +++ b/sound/soc/codecs/wm8988.c | |||
@@ -871,7 +871,6 @@ static int wm8988_spi_remove(struct spi_device *spi) | |||
871 | static struct spi_driver wm8988_spi_driver = { | 871 | static struct spi_driver wm8988_spi_driver = { |
872 | .driver = { | 872 | .driver = { |
873 | .name = "wm8988", | 873 | .name = "wm8988", |
874 | .owner = THIS_MODULE, | ||
875 | }, | 874 | }, |
876 | .probe = wm8988_spi_probe, | 875 | .probe = wm8988_spi_probe, |
877 | .remove = wm8988_spi_remove, | 876 | .remove = wm8988_spi_remove, |
diff --git a/sound/soc/codecs/wm8995.c b/sound/soc/codecs/wm8995.c index eda52a96c1fa..24500bafb0a8 100644 --- a/sound/soc/codecs/wm8995.c +++ b/sound/soc/codecs/wm8995.c | |||
@@ -2246,7 +2246,6 @@ static int wm8995_spi_remove(struct spi_device *spi) | |||
2246 | static struct spi_driver wm8995_spi_driver = { | 2246 | static struct spi_driver wm8995_spi_driver = { |
2247 | .driver = { | 2247 | .driver = { |
2248 | .name = "wm8995", | 2248 | .name = "wm8995", |
2249 | .owner = THIS_MODULE, | ||
2250 | }, | 2249 | }, |
2251 | .probe = wm8995_spi_probe, | 2250 | .probe = wm8995_spi_probe, |
2252 | .remove = wm8995_spi_remove | 2251 | .remove = wm8995_spi_remove |