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/opti9xx/miro.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/opti9xx/miro.c')
-rw-r--r-- | sound/isa/opti9xx/miro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/opti9xx/miro.c b/sound/isa/opti9xx/miro.c index 33471bdbe269..cd29b30b362e 100644 --- a/sound/isa/opti9xx/miro.c +++ b/sound/isa/opti9xx/miro.c | |||
@@ -137,8 +137,6 @@ struct snd_miro { | |||
137 | 137 | ||
138 | static void snd_miro_proc_init(struct snd_miro * miro); | 138 | static void snd_miro_proc_init(struct snd_miro * miro); |
139 | 139 | ||
140 | #define DRIVER_NAME "snd-miro" | ||
141 | |||
142 | static char * snd_opti9xx_names[] = { | 140 | static char * snd_opti9xx_names[] = { |
143 | "unkown", | 141 | "unkown", |
144 | "82C928", "82C929", | 142 | "82C928", "82C929", |
@@ -1423,13 +1421,15 @@ static int __devexit snd_miro_remove(struct device *devptr, unsigned int dev) | |||
1423 | return 0; | 1421 | return 0; |
1424 | } | 1422 | } |
1425 | 1423 | ||
1424 | #define DEV_NAME "miro" | ||
1425 | |||
1426 | static struct isa_driver snd_miro_driver = { | 1426 | static struct isa_driver snd_miro_driver = { |
1427 | .match = snd_miro_match, | 1427 | .match = snd_miro_match, |
1428 | .probe = snd_miro_probe, | 1428 | .probe = snd_miro_probe, |
1429 | .remove = __devexit_p(snd_miro_remove), | 1429 | .remove = __devexit_p(snd_miro_remove), |
1430 | /* FIXME: suspend/resume */ | 1430 | /* FIXME: suspend/resume */ |
1431 | .driver = { | 1431 | .driver = { |
1432 | .name = DRIVER_NAME | 1432 | .name = DEV_NAME |
1433 | }, | 1433 | }, |
1434 | }; | 1434 | }; |
1435 | 1435 | ||