Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
9040d102
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9040d102
编写于
1月 24, 2013
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ALSA: hda - Add snd_hda_check_power_state() helper function
... for small refactoring. Signed-off-by:
N
Takashi Iwai
<
tiwai@suse.de
>
上级
b9c590bb
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
18 addition
and
15 deletion
+18
-15
sound/pci/hda/hda_codec.c
sound/pci/hda/hda_codec.c
+2
-7
sound/pci/hda/hda_local.h
sound/pci/hda/hda_local.h
+13
-0
sound/pci/hda/patch_via.c
sound/pci/hda/patch_via.c
+3
-8
未找到文件。
sound/pci/hda/hda_codec.c
浏览文件 @
9040d102
...
...
@@ -3779,18 +3779,13 @@ static void sync_power_up_states(struct hda_codec *codec)
for
(
i
=
0
;
i
<
codec
->
num_nodes
;
i
++
,
nid
++
)
{
unsigned
int
wcaps
=
get_wcaps
(
codec
,
nid
);
unsigned
int
state
,
target
;
unsigned
int
target
;
if
(
!
(
wcaps
&
AC_WCAP_POWER
))
continue
;
target
=
codec
->
power_filter
(
codec
,
nid
,
AC_PWRST_D0
);
if
(
target
==
AC_PWRST_D0
)
continue
;
state
=
snd_hda_codec_read
(
codec
,
nid
,
0
,
AC_VERB_GET_POWER_STATE
,
0
);
if
(
state
&
AC_PWRST_ERROR
)
continue
;
state
=
(
state
>>
4
)
&
0x0f
;
if
(
state
!=
target
)
if
(
!
snd_hda_check_power_state
(
codec
,
nid
,
target
))
snd_hda_codec_write
(
codec
,
nid
,
0
,
AC_VERB_SET_POWER_STATE
,
target
);
}
...
...
sound/pci/hda/hda_local.h
浏览文件 @
9040d102
...
...
@@ -657,6 +657,19 @@ int snd_hda_check_amp_list_power(struct hda_codec *codec,
struct
hda_loopback_check
*
check
,
hda_nid_t
nid
);
/* check whether the actual power state matches with the target state */
static
inline
bool
snd_hda_check_power_state
(
struct
hda_codec
*
codec
,
hda_nid_t
nid
,
unsigned
int
target_state
)
{
unsigned
int
state
=
snd_hda_codec_read
(
codec
,
nid
,
0
,
AC_VERB_GET_POWER_STATE
,
0
);
if
(
state
&
AC_PWRST_ERROR
)
return
true
;
state
=
(
state
>>
4
)
&
0x0f
;
return
(
state
!=
target_state
);
}
/*
* AMP control callbacks
*/
...
...
sound/pci/hda/patch_via.c
浏览文件 @
9040d102
...
...
@@ -240,10 +240,7 @@ static void set_widgets_power_state(struct hda_codec *codec)
static
void
update_power_state
(
struct
hda_codec
*
codec
,
hda_nid_t
nid
,
unsigned
int
parm
)
{
unsigned
int
state
=
snd_hda_codec_read
(
codec
,
nid
,
0
,
AC_VERB_GET_POWER_STATE
,
0
);
state
=
(
state
>>
4
)
&
0x0f
;
if
(
state
==
parm
)
if
(
snd_hda_check_power_state
(
codec
,
nid
,
parm
))
return
;
snd_hda_codec_write
(
codec
,
nid
,
0
,
AC_VERB_SET_POWER_STATE
,
parm
);
}
...
...
@@ -253,10 +250,8 @@ static void update_conv_power_state(struct hda_codec *codec, hda_nid_t nid,
{
struct
via_spec
*
spec
=
codec
->
spec
;
unsigned
int
format
;
unsigned
int
state
=
snd_hda_codec_read
(
codec
,
nid
,
0
,
AC_VERB_GET_POWER_STATE
,
0
);
state
=
(
state
>>
4
)
&
0x0f
;
if
(
state
==
parm
)
if
(
snd_hda_check_power_state
(
codec
,
nid
,
parm
))
return
;
format
=
snd_hda_codec_read
(
codec
,
nid
,
0
,
AC_VERB_GET_CONV
,
0
);
if
(
format
&&
(
spec
->
dac_stream_tag
[
index
]
!=
format
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录