aboutsummaryrefslogtreecommitdiffstats
path: root/sound/isa/wavefront
diff options
context:
space:
mode:
authorRene Herman <rene.herman@gmail.com>2007-03-20 06:33:46 -0400
committerJaroslav Kysela <perex@suse.cz>2007-05-11 10:55:50 -0400
commit83c51c0ab08f55468d8f5444ff2f70a36841a21f (patch)
treeb961dfec390caeb84fb065ee67000b8cac3fd12c /sound/isa/wavefront
parente4b6088c8cf16781f7f7b887811b164daf625968 (diff)
[ALSA] isa_bus device/driver naming
isa_bus: delete snd_ prefix from the (sysfs visible) device/driver names. Signed-off-by: Rene Herman <rene.herman@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/isa/wavefront')
-rw-r--r--sound/isa/wavefront/wavefront.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/wavefront/wavefront.c b/sound/isa/wavefront/wavefront.c
index 6f143275e3b3..ae2038e682f0 100644
--- a/sound/isa/wavefront/wavefront.c
+++ b/sound/isa/wavefront/wavefront.c
@@ -633,7 +633,7 @@ static int __devexit snd_wavefront_isa_remove(struct device *devptr,
633 return 0; 633 return 0;
634} 634}
635 635
636#define WAVEFRONT_DRIVER "snd_wavefront" 636#define DEV_NAME "wavefront"
637 637
638static struct isa_driver snd_wavefront_driver = { 638static struct isa_driver snd_wavefront_driver = {
639 .match = snd_wavefront_isa_match, 639 .match = snd_wavefront_isa_match,
@@ -641,7 +641,7 @@ static struct isa_driver snd_wavefront_driver = {
641 .remove = __devexit_p(snd_wavefront_isa_remove), 641 .remove = __devexit_p(snd_wavefront_isa_remove),
642 /* FIXME: suspend, resume */ 642 /* FIXME: suspend, resume */
643 .driver = { 643 .driver = {
644 .name = WAVEFRONT_DRIVER 644 .name = DEV_NAME
645 }, 645 },
646}; 646};
647 647