diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-06-27 17:10:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-28 14:34:54 -0400 |
commit | ea7fc3336b1d657c65daf55614d4aaadd8c1c244 (patch) | |
tree | 3c64f29087feca27d2e09cd58d505393ab8ca563 /sound/isa | |
parent | 8a465c3239d5b3a5a7361c38fc499ad8082a0685 (diff) |
ALSA: use __devexit_p
Change __devexit to __devexit_p:
sound/isa/opl3sa2.c:956: error: expected expression before '__attribute__'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Jaroslav Kysela <perex@suse.cz>
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/opl3sa2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/opl3sa2.c b/sound/isa/opl3sa2.c index 61a323cc0e49..4f6800b43b0e 100644 --- a/sound/isa/opl3sa2.c +++ b/sound/isa/opl3sa2.c | |||
@@ -953,7 +953,7 @@ static int snd_opl3sa2_isa_resume(struct device *dev, unsigned int n) | |||
953 | static struct isa_driver snd_opl3sa2_isa_driver = { | 953 | static struct isa_driver snd_opl3sa2_isa_driver = { |
954 | .match = snd_opl3sa2_isa_match, | 954 | .match = snd_opl3sa2_isa_match, |
955 | .probe = snd_opl3sa2_isa_probe, | 955 | .probe = snd_opl3sa2_isa_probe, |
956 | .remove = __devexit( snd_opl3sa2_isa_remove), | 956 | .remove = __devexit_p(snd_opl3sa2_isa_remove), |
957 | #ifdef CONFIG_PM | 957 | #ifdef CONFIG_PM |
958 | .suspend = snd_opl3sa2_isa_suspend, | 958 | .suspend = snd_opl3sa2_isa_suspend, |
959 | .resume = snd_opl3sa2_isa_resume, | 959 | .resume = snd_opl3sa2_isa_resume, |