aboutsummaryrefslogtreecommitdiffstats
path: root/sound/sh
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2014-10-20 10:22:02 -0400
committerWolfram Sang <wsa@the-dreams.de>2014-10-20 10:22:02 -0400
commit9717b20ee4b9aeea748f0624f0895490510c2553 (patch)
tree43da7badcac7d814d27730c3355136dfc2f477ce /sound/sh
parent85be0fa4600b89961da1201ada5337f266a561f3 (diff)
ALSA: sh: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the driver core. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'sound/sh')
-rw-r--r--sound/sh/aica.c1
-rw-r--r--sound/sh/sh_dac_audio.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/sound/sh/aica.c b/sound/sh/aica.c
index 47849eaf266d..f44dda610ed2 100644
--- a/sound/sh/aica.c
+++ b/sound/sh/aica.c
@@ -652,7 +652,6 @@ static struct platform_driver snd_aica_driver = {
652 .remove = snd_aica_remove, 652 .remove = snd_aica_remove,
653 .driver = { 653 .driver = {
654 .name = SND_AICA_DRIVER, 654 .name = SND_AICA_DRIVER,
655 .owner = THIS_MODULE,
656 }, 655 },
657}; 656};
658 657
diff --git a/sound/sh/sh_dac_audio.c b/sound/sh/sh_dac_audio.c
index d1fb74dabbd1..abf9c0cab1e2 100644
--- a/sound/sh/sh_dac_audio.c
+++ b/sound/sh/sh_dac_audio.c
@@ -436,7 +436,6 @@ static struct platform_driver sh_dac_driver = {
436 .remove = snd_sh_dac_remove, 436 .remove = snd_sh_dac_remove,
437 .driver = { 437 .driver = {
438 .name = "dac_audio", 438 .name = "dac_audio",
439 .owner = THIS_MODULE,
440 }, 439 },
441}; 440};
442 441