Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
077f893b
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
077f893b
编写于
4月 08, 2013
作者:
R
Rafael J. Wysocki
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'acpi-pm' into linux-next
* acpi-pm: ACPI / PM: Fix potential problem in acpi_device_get_power()
上级
6912897d
75eb2d13
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
15 deletion
+24
-15
drivers/acpi/device_pm.c
drivers/acpi/device_pm.c
+24
-15
未找到文件。
drivers/acpi/device_pm.c
浏览文件 @
077f893b
...
...
@@ -145,27 +145,36 @@ int acpi_device_get_power(struct acpi_device *device, int *state)
}
/*
* Get the device's power state
either directly (via _PSC) or
* i
ndirectly (via power resources)
.
* Get the device's power state
from power resources settings and _PSC,
* i
f available
.
*/
if
(
device
->
power
.
flags
.
power_resources
)
{
int
error
=
acpi_power_get_inferred_state
(
device
,
&
result
);
if
(
error
)
return
error
;
}
if
(
device
->
power
.
flags
.
explicit_get
)
{
acpi_handle
handle
=
device
->
handle
;
unsigned
long
long
psc
;
acpi_status
status
=
acpi_evaluate_integer
(
device
->
handle
,
"_PSC"
,
NULL
,
&
psc
);
acpi_status
status
;
status
=
acpi_evaluate_integer
(
handle
,
"_PSC"
,
NULL
,
&
psc
);
if
(
ACPI_FAILURE
(
status
))
return
-
ENODEV
;
result
=
psc
;
}
/* The test below covers ACPI_STATE_UNKNOWN too. */
if
(
result
<=
ACPI_STATE_D2
)
{
;
/* Do nothing. */
}
else
if
(
device
->
power
.
flags
.
power_resources
)
{
int
error
=
acpi_power_get_inferred_state
(
device
,
&
result
);
if
(
error
)
return
error
;
}
else
if
(
result
==
ACPI_STATE_D3_HOT
)
{
result
=
ACPI_STATE_D3
;
/*
* The power resources settings may indicate a power state
* shallower than the actual power state of the device.
*
* Moreover, on systems predating ACPI 4.0, if the device
* doesn't depend on any power resources and _PSC returns 3,
* that means "power off". We need to maintain compatibility
* with those systems.
*/
if
(
psc
>
result
&&
psc
<
ACPI_STATE_D3_COLD
)
result
=
psc
;
else
if
(
result
==
ACPI_STATE_UNKNOWN
)
result
=
psc
>
ACPI_STATE_D2
?
ACPI_STATE_D3_COLD
:
psc
;
}
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录