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/es18xx.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/es18xx.c')
-rw-r--r-- | sound/isa/es18xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c index 12b61af1a4ef..d2a9c7df0ce5 100644 --- a/sound/isa/es18xx.c +++ b/sound/isa/es18xx.c | |||
@@ -2318,7 +2318,7 @@ static int snd_es18xx_isa_resume(struct device *dev, unsigned int n) | |||
2318 | } | 2318 | } |
2319 | #endif | 2319 | #endif |
2320 | 2320 | ||
2321 | #define ES18XX_DRIVER "snd_es18xx" | 2321 | #define DEV_NAME "es18xx" |
2322 | 2322 | ||
2323 | static struct isa_driver snd_es18xx_isa_driver = { | 2323 | static struct isa_driver snd_es18xx_isa_driver = { |
2324 | .match = snd_es18xx_isa_match, | 2324 | .match = snd_es18xx_isa_match, |
@@ -2329,7 +2329,7 @@ static struct isa_driver snd_es18xx_isa_driver = { | |||
2329 | .resume = snd_es18xx_isa_resume, | 2329 | .resume = snd_es18xx_isa_resume, |
2330 | #endif | 2330 | #endif |
2331 | .driver = { | 2331 | .driver = { |
2332 | .name = ES18XX_DRIVER | 2332 | .name = DEV_NAME |
2333 | }, | 2333 | }, |
2334 | }; | 2334 | }; |
2335 | 2335 | ||