dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Matt Porter 2005-11-29 14:46:01 +01:00 committed by Jaroslav Kysela
parent 015b6a198f
commit 954fa19ab7
1 changed files with 1 additions and 1 deletions

View File

@ -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.");