diff options
author | Rene Herman <rene.herman@gmail.com> | 2007-03-20 11:33:46 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-05-11 16:55:50 +0200 |
commit | 83c51c0ab08f55468d8f5444ff2f70a36841a21f (patch) | |
tree | b961dfec390caeb84fb065ee67000b8cac3fd12c /sound/isa/sb | |
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/sb')
-rw-r--r-- | sound/isa/sb/sb16.c | 6 | ||||
-rw-r--r-- | sound/isa/sb/sb8.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sound/isa/sb/sb16.c b/sound/isa/sb/sb16.c index 8b734a239008..2a19b0a39eda 100644 --- a/sound/isa/sb/sb16.c +++ b/sound/isa/sb/sb16.c @@ -615,9 +615,9 @@ static int snd_sb16_isa_resume(struct device *dev, unsigned int n) #endif #ifdef SNDRV_SBAWE -#define SND_SB16_DRIVER "snd_sbawe" +#define DEV_NAME "sbawe" #else -#define SND_SB16_DRIVER "snd_sb16" +#define DEV_NAME "sb16" #endif static struct isa_driver snd_sb16_isa_driver = { @@ -629,7 +629,7 @@ static struct isa_driver snd_sb16_isa_driver = { .resume = snd_sb16_isa_resume, #endif .driver = { - .name = SND_SB16_DRIVER + .name = DEV_NAME }, }; diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c index b7de1bc0e8a4..a1b3786b391e 100644 --- a/sound/isa/sb/sb8.c +++ b/sound/isa/sb/sb8.c @@ -239,7 +239,7 @@ static int snd_sb8_resume(struct device *dev, unsigned int n) } #endif -#define SND_SB8_DRIVER "snd_sb8" +#define DEV_NAME "sb8" static struct isa_driver snd_sb8_driver = { .match = snd_sb8_match, @@ -250,7 +250,7 @@ static struct isa_driver snd_sb8_driver = { .resume = snd_sb8_resume, #endif .driver = { - .name = SND_SB8_DRIVER + .name = DEV_NAME }, }; |