diff options
author | Prarit Bhargava <prarit@redhat.com> | 2007-02-13 07:11:11 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-14 02:38:28 -0500 |
commit | 788c6043335590e0a483fdc18f85b1405a157bf9 (patch) | |
tree | 23e24335e62ba0f692da4707933c7680e94fa1d8 /sound/drivers/mts64.c | |
parent | 46f02ca36e9b2b690ebcef18fa0652c586d6c08e (diff) |
[ALSA] Fix __devinit and __devexit issues with sound drivers
Fix __devinit and __devexit issues with sound drivers.
Resolves MODPOST warnings similar to:
WARNING: sound/drivers/snd-dummy.o - Section mismatch: reference to .init.text:snd_dummy_probe from .data.rel.local between 'snd_dummy_driver' (at offset 0x0) and 'snd_dummy_controls'
WARNING: sound/drivers/snd-mtpav.o - Section mismatch: reference to .init.text:snd_mtpav_probe from .data.rel.local between 'snd_mtpav_driver' (at offset 0x0) and 'snd_mtpav_input'
WARNING: sound/drivers/snd-virmidi.o - Section mismatch: reference to .init.text:snd_virmidi_probe from .data.rel.local after 'snd_virmidi_driver' (at offset 0x0)
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/drivers/mts64.c')
-rw-r--r-- | sound/drivers/mts64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/drivers/mts64.c b/sound/drivers/mts64.c index 5327c6f841f4..6c9f4c9bfeb6 100644 --- a/sound/drivers/mts64.c +++ b/sound/drivers/mts64.c | |||
@@ -1026,7 +1026,7 @@ __err: | |||
1026 | return err; | 1026 | return err; |
1027 | } | 1027 | } |
1028 | 1028 | ||
1029 | static int snd_mts64_remove(struct platform_device *pdev) | 1029 | static int __devexit snd_mts64_remove(struct platform_device *pdev) |
1030 | { | 1030 | { |
1031 | struct snd_card *card = platform_get_drvdata(pdev); | 1031 | struct snd_card *card = platform_get_drvdata(pdev); |
1032 | 1032 | ||
@@ -1039,7 +1039,7 @@ static int snd_mts64_remove(struct platform_device *pdev) | |||
1039 | 1039 | ||
1040 | static struct platform_driver snd_mts64_driver = { | 1040 | static struct platform_driver snd_mts64_driver = { |
1041 | .probe = snd_mts64_probe, | 1041 | .probe = snd_mts64_probe, |
1042 | .remove = snd_mts64_remove, | 1042 | .remove = __devexit_p(snd_mts64_remove), |
1043 | .driver = { | 1043 | .driver = { |
1044 | .name = PLATFORM_DRIVER | 1044 | .name = PLATFORM_DRIVER |
1045 | } | 1045 | } |
@@ -1048,7 +1048,7 @@ static struct platform_driver snd_mts64_driver = { | |||
1048 | /********************************************************************* | 1048 | /********************************************************************* |
1049 | * module init stuff | 1049 | * module init stuff |
1050 | *********************************************************************/ | 1050 | *********************************************************************/ |
1051 | static void snd_mts64_unregister_all(void) | 1051 | static void __init_or_module snd_mts64_unregister_all(void) |
1052 | { | 1052 | { |
1053 | int i; | 1053 | int i; |
1054 | 1054 | ||