Skip to content

Commit

Permalink
ALSA: hda - Fix invalid amp value for STAC925x
Browse files Browse the repository at this point in the history
The value set in the commit 2465fb6
is actually wrong.  The value range is from 0 to 0x1f while the patch
sets to 0x7f.  Let's fix it.

Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Jan 15, 2009
1 parent 1b0652e commit 428549f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pci/hda/patch_sigmatel.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ static struct hda_verb stac925x_core_init[] = {
/* set dac0mux for dac converter */
{ 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
/* unmute and set max the selector */
{ 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f },
{ 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f },
{}
};

Expand Down

0 comments on commit 428549f

Please sign in to comment.