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/sgalaxy.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/sgalaxy.c')
-rw-r--r-- | sound/isa/sgalaxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/sgalaxy.c b/sound/isa/sgalaxy.c index 19e0b0edb8c4..922519def099 100644 --- a/sound/isa/sgalaxy.c +++ b/sound/isa/sgalaxy.c | |||
@@ -334,7 +334,7 @@ static int snd_sgalaxy_resume(struct device *pdev, unsigned int n) | |||
334 | } | 334 | } |
335 | #endif | 335 | #endif |
336 | 336 | ||
337 | #define SND_SGALAXY_DRIVER "snd_sgalaxy" | 337 | #define DEV_NAME "sgalaxy" |
338 | 338 | ||
339 | static struct isa_driver snd_sgalaxy_driver = { | 339 | static struct isa_driver snd_sgalaxy_driver = { |
340 | .match = snd_sgalaxy_match, | 340 | .match = snd_sgalaxy_match, |
@@ -345,7 +345,7 @@ static struct isa_driver snd_sgalaxy_driver = { | |||
345 | .resume = snd_sgalaxy_resume, | 345 | .resume = snd_sgalaxy_resume, |
346 | #endif | 346 | #endif |
347 | .driver = { | 347 | .driver = { |
348 | .name = SND_SGALAXY_DRIVER | 348 | .name = DEV_NAME |
349 | }, | 349 | }, |
350 | }; | 350 | }; |
351 | 351 | ||