diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-06-04 10:46:43 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-06-04 10:52:16 +0200 |
commit | 82ced6fd28653ab456c3e5b25e9ef3c1c96cd6e9 (patch) | |
tree | b9d142504aafa35107dbd23691a515ff551cc028 /sound/parisc | |
parent | 3e1e0a5dd539f83438078759c8642c5dd7c24cb6 (diff) |
ALSA: Add missing __devexit_p() markers
3 ISA sound drivers lack their __devexit_p() markers, which would
cause build failures when the kernel is built without hotplug support.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/parisc')
-rw-r--r-- | sound/parisc/harmony.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/parisc/harmony.c b/sound/parisc/harmony.c index 6055fd6d3b38..610c43914cf2 100644 --- a/sound/parisc/harmony.c +++ b/sound/parisc/harmony.c @@ -1020,7 +1020,7 @@ static struct parisc_driver snd_harmony_driver = { .name = "harmony", .id_table = snd_harmony_devtable, .probe = snd_harmony_probe, - .remove = snd_harmony_remove, + .remove = __devexit_p(snd_harmony_remove), }; static int __init |