aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Porter <mporter@embeddedalley.com>2005-11-29 08:46:01 -0500
committerJaroslav Kysela <perex@suse.cz>2006-01-03 06:29:54 -0500
commit954fa19ab7a14c3f54044780a90cd6a95149f90b (patch)
tree2cb86863883ab1c1b08d07d752a283188691632f
parent015b6a198f51d660797b78c6c7ee60d0252ebf40 (diff)
[ALSA] hda-intel - Fix HDA probe_mask default
Modules: HDA Intel driver The probe_mask module parameter comment notes that the intended default is -1. Fix it to be so, otherwise all codecs are skipped and init fails. Signed-off-by: Matt Porter <mporter@embeddedalley.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-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 8a0a0a7d5d49..a983deba4025 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -52,7 +52,7 @@ static int index = SNDRV_DEFAULT_IDX1;
52static char *id = SNDRV_DEFAULT_STR1; 52static char *id = SNDRV_DEFAULT_STR1;
53static char *model; 53static char *model;
54static int position_fix; 54static int position_fix;
55static int probe_mask; 55static int probe_mask = -1;
56 56
57module_param(index, int, 0444); 57module_param(index, int, 0444);
58MODULE_PARM_DESC(index, "Index value for Intel HD audio interface."); 58MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");