Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
9e042e71
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9e042e71
编写于
8月 30, 2010
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ALSA: hda - Use new inputs[] field to parse input-pins for AD codecs
Signed-off-by:
N
Takashi Iwai
<
tiwai@suse.de
>
上级
d7b1ae9d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
18 addition
and
12 deletion
+18
-12
sound/pci/hda/patch_analog.c
sound/pci/hda/patch_analog.c
+18
-12
未找到文件。
sound/pci/hda/patch_analog.c
浏览文件 @
9e042e71
...
...
@@ -2880,7 +2880,7 @@ static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
/* create input playback/capture controls for the given pin */
static
int
new_analog_input
(
struct
ad198x_spec
*
spec
,
hda_nid_t
pin
,
const
char
*
ctlname
,
int
boost
)
const
char
*
ctlname
,
int
ctlidx
,
int
boost
)
{
char
name
[
32
];
int
err
,
idx
;
...
...
@@ -2913,16 +2913,23 @@ static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
const
struct
auto_pin_cfg
*
cfg
)
{
struct
hda_input_mux
*
imux
=
&
spec
->
private_imux
;
int
i
,
err
;
int
i
,
err
,
type
,
type_idx
=
0
;
for
(
i
=
0
;
i
<
AUTO_PIN_LAST
;
i
++
)
{
err
=
new_analog_input
(
spec
,
cfg
->
input_pins
[
i
],
auto_pin_cfg_labels
[
i
],
i
<=
AUTO_PIN_FRONT_MIC
);
for
(
i
=
0
;
i
<
cfg
->
num_inputs
;
i
++
)
{
type
=
cfg
->
inputs
[
i
].
type
;
if
(
i
>
0
&&
type
!=
cfg
->
inputs
[
i
-
1
].
type
)
type_idx
++
;
else
type_idx
=
0
;
err
=
new_analog_input
(
spec
,
cfg
->
inputs
[
i
].
pin
,
auto_pin_cfg_labels
[
type
],
type_idx
,
type
<=
AUTO_PIN_FRONT_MIC
);
if
(
err
<
0
)
return
err
;
imux
->
items
[
imux
->
num_items
].
label
=
auto_pin_cfg_labels
[
i
];
imux
->
items
[
imux
->
num_items
].
index
=
ad1988_pin_to_adc_idx
(
cfg
->
input_pins
[
i
]);
imux
->
items
[
imux
->
num_items
].
label
=
snd_hda_get_input_pin_label
(
cfg
,
i
);
imux
->
items
[
imux
->
num_items
].
index
=
ad1988_pin_to_adc_idx
(
cfg
->
inputs
[
i
].
pin
);
imux
->
num_items
++
;
}
imux
->
items
[
imux
->
num_items
].
label
=
"Mix"
;
...
...
@@ -2994,12 +3001,11 @@ static void ad1988_auto_init_extra_out(struct hda_codec *codec)
static
void
ad1988_auto_init_analog_input
(
struct
hda_codec
*
codec
)
{
struct
ad198x_spec
*
spec
=
codec
->
spec
;
const
struct
auto_pin_cfg
*
cfg
=
&
spec
->
autocfg
;
int
i
,
idx
;
for
(
i
=
0
;
i
<
AUTO_PIN_LAST
;
i
++
)
{
hda_nid_t
nid
=
spec
->
autocfg
.
input_pins
[
i
];
if
(
!
nid
)
continue
;
for
(
i
=
0
;
i
<
cfg
->
num_inputs
;
i
++
)
{
hda_nid_t
nid
=
cfg
->
inputs
[
i
].
pin
;
switch
(
nid
)
{
case
0x15
:
/* port-C */
snd_hda_codec_write
(
codec
,
0x33
,
0
,
AC_VERB_SET_CONNECT_SEL
,
0x0
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录