From: Matt Porter Date: Tue, 29 Nov 2005 13:46:01 +0000 (+0100) Subject: [ALSA] hda-intel - Fix HDA probe_mask default X-Git-Tag: v2.6.16-rc1~474^2~22^2~3^2~58 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=954fa19ab7a14c3f54044780a90cd6a95149f90b;p=~emulex%2Finfiniband.git [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 Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 8a0a0a7d5d4..a983deba402 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; static char *id = SNDRV_DEFAULT_STR1; static char *model; static int position_fix; -static int probe_mask; +static int probe_mask = -1; module_param(index, int, 0444); MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");