Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
9177b42b
Commit
9177b42b
authored
Jan 17, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/hda' into for-linus
parents
db45705c
2de686d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+2
-0
sound/pci/hda/patch_sigmatel.c
sound/pci/hda/patch_sigmatel.c
+8
-7
No files found.
sound/pci/hda/patch_realtek.c
View file @
9177b42b
...
...
@@ -8478,6 +8478,7 @@ static struct snd_pci_quirk alc883_cfg_tbl[] = {
SND_PCI_QUIRK
(
0x1043
,
0x835f
,
"Asus Eee 1601"
,
ALC888_ASUS_EEE1601
),
SND_PCI_QUIRK
(
0x105b
,
0x0ce8
,
"Foxconn P35AX-S"
,
ALC883_6ST_DIG
),
SND_PCI_QUIRK
(
0x105b
,
0x6668
,
"Foxconn"
,
ALC883_6ST_DIG
),
SND_PCI_QUIRK
(
0x1071
,
0x8227
,
"Mitac 82801H"
,
ALC883_MITAC
),
SND_PCI_QUIRK
(
0x1071
,
0x8253
,
"Mitac 8252d"
,
ALC883_MITAC
),
SND_PCI_QUIRK
(
0x1071
,
0x8258
,
"Evesham Voyaeger"
,
ALC883_LAPTOP_EAPD
),
SND_PCI_QUIRK
(
0x10f1
,
0x2350
,
"TYAN-S2350"
,
ALC888_6ST_DELL
),
...
...
@@ -8526,6 +8527,7 @@ static struct snd_pci_quirk alc883_cfg_tbl[] = {
SND_PCI_QUIRK
(
0x1991
,
0x5625
,
"Haier W66"
,
ALC883_HAIER_W66
),
SND_PCI_QUIRK
(
0x8086
,
0x0001
,
"DG33BUC"
,
ALC883_3ST_6ch_INTEL
),
SND_PCI_QUIRK
(
0x8086
,
0x0002
,
"DG33FBC"
,
ALC883_3ST_6ch_INTEL
),
SND_PCI_QUIRK
(
0x8086
,
0x2503
,
"82801H"
,
ALC883_MITAC
),
SND_PCI_QUIRK
(
0x8086
,
0x0022
,
"DX58SO"
,
ALC883_3ST_6ch_INTEL
),
SND_PCI_QUIRK
(
0x8086
,
0xd601
,
"D102GGC"
,
ALC883_3ST_6ch
),
{}
...
...
sound/pci/hda/patch_sigmatel.c
View file @
9177b42b
...
...
@@ -885,8 +885,8 @@ static struct hda_verb stac92hd71bxx_analog_core_init[] = {
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
,
0xb01f
},
/*
mute the master volume
*/
{
0x0e
,
AC_VERB_SET_AMP_GAIN_MUTE
,
AMP_OUT_MUTE
},
{}
};
...
...
@@ -1138,6 +1138,8 @@ static struct snd_kcontrol_new stac92hd71bxx_mixer[] = {
};
static
struct
snd_kcontrol_new
stac925x_mixer
[]
=
{
HDA_CODEC_VOLUME
(
"Master Playback Volume"
,
0x0e
,
0
,
HDA_OUTPUT
),
HDA_CODEC_MUTE
(
"Master Playback Switch"
,
0x0e
,
0
,
HDA_OUTPUT
),
STAC_INPUT_SOURCE
(
1
),
HDA_CODEC_VOLUME
(
"Capture Volume"
,
0x09
,
0
,
HDA_OUTPUT
),
HDA_CODEC_MUTE
(
"Capture Switch"
,
0x14
,
0
,
HDA_OUTPUT
),
...
...
@@ -3573,13 +3575,12 @@ static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out
err
=
stac92xx_auto_fill_dac_nids
(
codec
);
if
(
err
<
0
)
return
err
;
err
=
stac92xx_auto_create_multi_out_ctls
(
codec
,
&
spec
->
autocfg
);
if
(
err
<
0
)
return
err
;
}
err
=
stac92xx_auto_create_multi_out_ctls
(
codec
,
&
spec
->
autocfg
);
if
(
err
<
0
)
return
err
;
/* setup analog beep controls */
if
(
spec
->
anabeep_nid
>
0
)
{
err
=
stac92xx_auto_create_beep_ctls
(
codec
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment