diff options
author | Rene Herman <rene.herman@gmail.com> | 2007-03-20 06:33:46 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-05-11 10:55:50 -0400 |
commit | 83c51c0ab08f55468d8f5444ff2f70a36841a21f (patch) | |
tree | b961dfec390caeb84fb065ee67000b8cac3fd12c /sound/isa/gus/gusmax.c | |
parent | e4b6088c8cf16781f7f7b887811b164daf625968 (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/gus/gusmax.c')
-rw-r--r-- | sound/isa/gus/gusmax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/gus/gusmax.c b/sound/isa/gus/gusmax.c index a0d2f8fc2738..708783d4351f 100644 --- a/sound/isa/gus/gusmax.c +++ b/sound/isa/gus/gusmax.c | |||
@@ -358,7 +358,7 @@ static int __devexit snd_gusmax_remove(struct device *devptr, unsigned int dev) | |||
358 | return 0; | 358 | return 0; |
359 | } | 359 | } |
360 | 360 | ||
361 | #define GUSMAX_DRIVER "snd_gusmax" | 361 | #define DEV_NAME "gusmax" |
362 | 362 | ||
363 | static struct isa_driver snd_gusmax_driver = { | 363 | static struct isa_driver snd_gusmax_driver = { |
364 | .match = snd_gusmax_match, | 364 | .match = snd_gusmax_match, |
@@ -366,7 +366,7 @@ static struct isa_driver snd_gusmax_driver = { | |||
366 | .remove = __devexit_p(snd_gusmax_remove), | 366 | .remove = __devexit_p(snd_gusmax_remove), |
367 | /* FIXME: suspend/resume */ | 367 | /* FIXME: suspend/resume */ |
368 | .driver = { | 368 | .driver = { |
369 | .name = GUSMAX_DRIVER | 369 | .name = DEV_NAME |
370 | }, | 370 | }, |
371 | }; | 371 | }; |
372 | 372 | ||