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
454e134d
Commit
454e134d
authored
Aug 19, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/hda' into topic/hda
parents
1c11ce81
3abf2f36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
sound/pci/hda/patch_realtek.c
sound/pci/hda/patch_realtek.c
+13
-2
No files found.
sound/pci/hda/patch_realtek.c
View file @
454e134d
...
...
@@ -12407,8 +12407,6 @@ static struct snd_pci_quirk alc268_cfg_tbl[] = {
ALC268_TOSHIBA
),
SND_PCI_QUIRK
(
0x1043
,
0x1205
,
"ASUS W7J"
,
ALC268_3ST
),
SND_PCI_QUIRK
(
0x1170
,
0x0040
,
"ZEPTO"
,
ALC268_ZEPTO
),
SND_PCI_QUIRK_MASK
(
0x1179
,
0xff00
,
0xff00
,
"TOSHIBA A/Lx05"
,
ALC268_TOSHIBA
),
SND_PCI_QUIRK
(
0x14c0
,
0x0025
,
"COMPAL IFL90/JFL-92"
,
ALC268_TOSHIBA
),
SND_PCI_QUIRK
(
0x152d
,
0x0763
,
"Diverse (CPR2000)"
,
ALC268_ACER
),
SND_PCI_QUIRK
(
0x152d
,
0x0771
,
"Quanta IL1"
,
ALC267_QUANTA_IL1
),
...
...
@@ -12416,6 +12414,15 @@ static struct snd_pci_quirk alc268_cfg_tbl[] = {
{}
};
/* Toshiba laptops have no unique PCI SSID but only codec SSID */
static
struct
snd_pci_quirk
alc268_ssid_cfg_tbl
[]
=
{
SND_PCI_QUIRK
(
0x1179
,
0xff0a
,
"TOSHIBA X-200"
,
ALC268_AUTO
),
SND_PCI_QUIRK
(
0x1179
,
0xff0e
,
"TOSHIBA X-200 HDMI"
,
ALC268_AUTO
),
SND_PCI_QUIRK_MASK
(
0x1179
,
0xff00
,
0xff00
,
"TOSHIBA A/Lx05"
,
ALC268_TOSHIBA
),
{}
};
static
struct
alc_config_preset
alc268_presets
[]
=
{
[
ALC267_QUANTA_IL1
]
=
{
.
mixers
=
{
alc267_quanta_il1_mixer
,
alc268_beep_mixer
,
...
...
@@ -12588,6 +12595,10 @@ static int patch_alc268(struct hda_codec *codec)
alc268_models
,
alc268_cfg_tbl
);
if
(
board_config
<
0
||
board_config
>=
ALC268_MODEL_LAST
)
board_config
=
snd_hda_check_board_codec_sid_config
(
codec
,
ALC882_MODEL_LAST
,
alc268_models
,
alc268_ssid_cfg_tbl
);
if
(
board_config
<
0
||
board_config
>=
ALC268_MODEL_LAST
)
{
printk
(
KERN_INFO
"hda_codec: %s: BIOS auto-probing.
\n
"
,
codec
->
chip_name
);
...
...
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