diff options
author | Takashi Iwai <tiwai@suse.de> | 2013-03-22 14:10:08 (GMT) |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-03-22 14:10:08 (GMT) |
commit | bec8e6807ef9f58955960c977f21c2a125145cdb (patch) | |
tree | a58ee61c412bcd198a5a333d37795abe7a4f0065 | |
parent | 98bd11152b5b8725b26d803dfdf205dc989d9832 (diff) | |
download | linux-bec8e6807ef9f58955960c977f21c2a125145cdb.tar.xz |
ALSA: hda - Lower the badness for independent HP penalty
The lack of independent HP mode shouldn't be too bad, but currently
its badness is set a bit too high. Let's lower it.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/hda/hda_generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c index 326302f..f0a422f 100644 --- a/sound/pci/hda/hda_generic.c +++ b/sound/pci/hda/hda_generic.c @@ -1007,7 +1007,7 @@ enum { /* Primary DAC shared with main surrounds */ BAD_SHARED_SURROUND = 0x100, /* No independent HP possible */ - BAD_NO_INDEP_HP = 0x40, + BAD_NO_INDEP_HP = 0x10, /* Primary DAC shared with main CLFE */ BAD_SHARED_CLFE = 0x10, /* Primary DAC shared with extra surrounds */ |