Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
ebb6e1a6
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看板
提交
ebb6e1a6
编写于
4月 14, 2005
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ACPI] Deprecate /proc/acpi/sleep in favor of /sys/power/state
Signed-off-by:
N
Len Brown
<
len.brown@intel.com
>
上级
9d943775
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
0 deletion
+17
-0
drivers/acpi/Kconfig
drivers/acpi/Kconfig
+8
-0
drivers/acpi/sleep/proc.c
drivers/acpi/sleep/proc.c
+9
-0
未找到文件。
drivers/acpi/Kconfig
浏览文件 @
ebb6e1a6
...
...
@@ -80,6 +80,14 @@ config ACPI_SLEEP_PROC_FS
depends on ACPI_SLEEP && PROC_FS
default y
config ACPI_SLEEP_PROC_SLEEP
bool "/proc/acpi/sleep (deprecated)"
depends on ACPI_SLEEP_PROC_FS
default n
---help---
Create /proc/acpi/sleep
Deprecated by /sys/power/state
config ACPI_AC
tristate "AC Adapter"
depends on X86
...
...
drivers/acpi/sleep/proc.c
浏览文件 @
ebb6e1a6
...
...
@@ -13,13 +13,17 @@
#include "sleep.h"
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
#define ACPI_SYSTEM_FILE_SLEEP "sleep"
#endif
#define ACPI_SYSTEM_FILE_ALARM "alarm"
#define ACPI_SYSTEM_FILE_WAKEUP_DEVICE "wakeup"
#define _COMPONENT ACPI_SYSTEM_COMPONENT
ACPI_MODULE_NAME
(
"sleep"
)
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
static
int
acpi_system_sleep_seq_show
(
struct
seq_file
*
seq
,
void
*
offset
)
{
...
...
@@ -78,6 +82,7 @@ acpi_system_write_sleep (
Done:
return
error
?
error
:
count
;
}
#endif
/* CONFIG_ACPI_SLEEP_PROC_SLEEP */
static
int
acpi_system_alarm_seq_show
(
struct
seq_file
*
seq
,
void
*
offset
)
{
...
...
@@ -452,6 +457,7 @@ static struct file_operations acpi_system_wakeup_device_fops = {
.
release
=
single_release
,
};
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
static
struct
file_operations
acpi_system_sleep_fops
=
{
.
open
=
acpi_system_sleep_open_fs
,
.
read
=
seq_read
,
...
...
@@ -459,6 +465,7 @@ static struct file_operations acpi_system_sleep_fops = {
.
llseek
=
seq_lseek
,
.
release
=
single_release
,
};
#endif
/* CONFIG_ACPI_SLEEP_PROC_SLEEP */
static
struct
file_operations
acpi_system_alarm_fops
=
{
.
open
=
acpi_system_alarm_open_fs
,
...
...
@@ -484,11 +491,13 @@ static int acpi_sleep_proc_init(void)
if
(
acpi_disabled
)
return
0
;
#ifdef CONFIG_ACPI_SLEEP_PROC_SLEEP
/* 'sleep' [R/W]*/
entry
=
create_proc_entry
(
ACPI_SYSTEM_FILE_SLEEP
,
S_IFREG
|
S_IRUGO
|
S_IWUSR
,
acpi_root_dir
);
if
(
entry
)
entry
->
proc_fops
=
&
acpi_system_sleep_fops
;
#endif
/* 'alarm' [R/W] */
entry
=
create_proc_entry
(
ACPI_SYSTEM_FILE_ALARM
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录