Skip to content

Commit

Permalink
ALSA: hda: fix invalid power mapping masks
Browse files Browse the repository at this point in the history
Fixed invalid power mappings for ports 0xd and 0xe on 93hd83xxx codecs.
They were shifted right one too many bits.

Signed-off-by: Matthew Ranostay <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
Matthew Ranostay authored and tiwai committed Jan 18, 2009
1 parent 2de686d commit 989738c
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 @@ -334,7 +334,7 @@ static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
};

static unsigned int stac92hd83xxx_pwr_mapping[4] = {
0x03, 0x0c, 0x10, 0x40,
0x03, 0x0c, 0x20, 0x80,
};

static hda_nid_t stac92hd83xxx_amp_nids[1] = {
Expand Down

0 comments on commit 989738c

Please sign in to comment.