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/isa/es1688 | |
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/isa/es1688')
-rw-r--r-- | sound/isa/es1688/es1688.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/es1688/es1688.c b/sound/isa/es1688/es1688.c index 7f29f56e405b..65f97ff4eef1 100644 --- a/sound/isa/es1688/es1688.c +++ b/sound/isa/es1688/es1688.c | |||
@@ -73,7 +73,7 @@ static struct platform_device *devices[SNDRV_CARDS]; | |||
73 | 73 | ||
74 | #define PFX "es1688: " | 74 | #define PFX "es1688: " |
75 | 75 | ||
76 | static int __init snd_es1688_probe(struct platform_device *pdev) | 76 | static int __devinit snd_es1688_probe(struct platform_device *pdev) |
77 | { | 77 | { |
78 | int dev = pdev->id; | 78 | int dev = pdev->id; |
79 | static int possible_irqs[] = {5, 9, 10, 7, -1}; | 79 | static int possible_irqs[] = {5, 9, 10, 7, -1}; |
@@ -171,7 +171,7 @@ static int __init snd_es1688_probe(struct platform_device *pdev) | |||
171 | return err; | 171 | return err; |
172 | } | 172 | } |
173 | 173 | ||
174 | static int snd_es1688_remove(struct platform_device *devptr) | 174 | static int __devexit snd_es1688_remove(struct platform_device *devptr) |
175 | { | 175 | { |
176 | snd_card_free(platform_get_drvdata(devptr)); | 176 | snd_card_free(platform_get_drvdata(devptr)); |
177 | platform_set_drvdata(devptr, NULL); | 177 | platform_set_drvdata(devptr, NULL); |
@@ -182,7 +182,7 @@ static int snd_es1688_remove(struct platform_device *devptr) | |||
182 | 182 | ||
183 | static struct platform_driver snd_es1688_driver = { | 183 | static struct platform_driver snd_es1688_driver = { |
184 | .probe = snd_es1688_probe, | 184 | .probe = snd_es1688_probe, |
185 | .remove = snd_es1688_remove, | 185 | .remove = __devexit_p(snd_es1688_remove), |
186 | /* FIXME: suspend/resume */ | 186 | /* FIXME: suspend/resume */ |
187 | .driver = { | 187 | .driver = { |
188 | .name = ES1688_DRIVER | 188 | .name = ES1688_DRIVER |