diff options
author | Rene Herman <rene.herman@gmail.com> | 2007-03-20 13:33:46 +0300 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-05-11 18:55:50 +0400 |
commit | 83c51c0ab08f55468d8f5444ff2f70a36841a21f (patch) | |
tree | b961dfec390caeb84fb065ee67000b8cac3fd12c /sound/isa/cs423x/cs4236.c | |
parent | e4b6088c8cf16781f7f7b887811b164daf625968 (diff) | |
download | linux-83c51c0ab08f55468d8f5444ff2f70a36841a21f.tar.xz |
[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/cs423x/cs4236.c')
-rw-r--r-- | sound/isa/cs423x/cs4236.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/cs423x/cs4236.c b/sound/isa/cs423x/cs4236.c index 7d9d4d562e90..87f1392a2fa7 100644 --- a/sound/isa/cs423x/cs4236.c +++ b/sound/isa/cs423x/cs4236.c @@ -75,10 +75,10 @@ MODULE_SUPPORTED_DEVICE("{{Crystal Semiconductors,CS4235}," #ifdef CS4232 #define IDENT "CS4232" -#define CS423X_DRIVER "snd_cs4232" +#define DEV_NAME "cs4232" #else #define IDENT "CS4236+" -#define CS423X_DRIVER "snd_cs4236" +#define DEV_NAME "cs4236" #endif static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ @@ -630,7 +630,7 @@ static struct isa_driver cs423x_isa_driver = { .resume = snd_cs423x_isa_resume, #endif .driver = { - .name = CS423X_DRIVER + .name = DEV_NAME }, }; |