aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-09-07 15:26:56 +0200
committerJaroslav Kysela <perex@suse.cz>2005-09-12 10:47:18 +0200
commita28f1cda0d01f6f98e3bef6a07c483a90f6a35d6 (patch)
tree7452dd3273006cb93ef4148ed752d14f04e763c6 /sound
parent0dd119f703d50759f0835f342e385f82cbf8b89e (diff)
[ALSA] hda-intel - Fix modem PCM creation
HDA Intel driver Fix a bug of modem PCM creation (due to a typo). Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 2098de7c567..a8eaeb463b0 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -1252,7 +1252,7 @@ static int __devinit azx_pcm_create(azx_t *chip)
for (c = 0; c < codec->num_pcms; c++) {
if (! codec->pcm_info[c].is_modem)
continue; /* already created */
- if (pcm_dev >= AZX_MAX_MODEM_PCMS) {
+ if (pcm_dev >= AZX_MAX_PCMS) {
snd_printk(KERN_ERR SFX "Too many modem PCMs\n");
return -EINVAL;
}