Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
54b8c39f
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
54b8c39f
编写于
17年前
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
差异文件
Pull misc-for-upstream into release branch
上级
0a14fe6e
0cd4554d
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
25 addition
and
7 deletion
+25
-7
MAINTAINERS
MAINTAINERS
+2
-3
arch/ia64/Kconfig
arch/ia64/Kconfig
+1
-0
drivers/acpi/hardware/hwsleep.c
drivers/acpi/hardware/hwsleep.c
+5
-0
drivers/acpi/ibm_acpi.c
drivers/acpi/ibm_acpi.c
+16
-3
include/acpi/actypes.h
include/acpi/actypes.h
+1
-1
未找到文件。
MAINTAINERS
浏览文件 @
54b8c39f
...
...
@@ -3066,11 +3066,10 @@ L: netdev@vger.kernel.org
S: Maintained
SONY VAIO CONTROL DEVICE DRIVER
P: Stelian Pop
M: stelian@popies.net
P: Mattia Dongili
M: malattia@linux.it
W: http://popies.net/sonypi/
L: linux-acpi@vger.kernel.org
W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
S: Maintained
SOUND
...
...
This diff is collapsed.
Click to expand it.
arch/ia64/Kconfig
浏览文件 @
54b8c39f
...
...
@@ -13,6 +13,7 @@ config IA64
bool
select PCI if (!IA64_HP_SIM)
select ACPI if (!IA64_HP_SIM)
select PM if (!IA64_HP_SIM)
default y
help
The Itanium Processor Family is Intel's 64-bit successor to
...
...
This diff is collapsed.
Click to expand it.
drivers/acpi/hardware/hwsleep.c
浏览文件 @
54b8c39f
...
...
@@ -300,6 +300,11 @@ acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state)
/*
* 2) Enable all wakeup GPEs
*/
status
=
acpi_hw_disable_all_gpes
();
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
acpi_gbl_system_awake_and_running
=
FALSE
;
status
=
acpi_hw_enable_all_wakeup_gpes
();
...
...
This diff is collapsed.
Click to expand it.
drivers/acpi/ibm_acpi.c
浏览文件 @
54b8c39f
...
...
@@ -2507,7 +2507,7 @@ static int __init setup_notify(struct ibm_struct *ibm)
ret
=
acpi_bus_get_device
(
*
ibm
->
handle
,
&
ibm
->
device
);
if
(
ret
<
0
)
{
printk
(
IBM_ERR
"%s device not present
\n
"
,
ibm
->
name
);
return
0
;
return
-
ENODEV
;
}
acpi_driver_data
(
ibm
->
device
)
=
ibm
;
...
...
@@ -2516,8 +2516,13 @@ static int __init setup_notify(struct ibm_struct *ibm)
status
=
acpi_install_notify_handler
(
*
ibm
->
handle
,
ibm
->
type
,
dispatch_notify
,
ibm
);
if
(
ACPI_FAILURE
(
status
))
{
printk
(
IBM_ERR
"acpi_install_notify_handler(%s) failed: %d
\n
"
,
ibm
->
name
,
status
);
if
(
status
==
AE_ALREADY_EXISTS
)
{
printk
(
IBM_NOTICE
"another device driver is already handling %s events
\n
"
,
ibm
->
name
);
}
else
{
printk
(
IBM_ERR
"acpi_install_notify_handler(%s) failed: %d
\n
"
,
ibm
->
name
,
status
);
}
return
-
ENODEV
;
}
ibm
->
notify_installed
=
1
;
...
...
@@ -2553,6 +2558,8 @@ static int __init register_driver(struct ibm_struct *ibm)
return
ret
;
}
static
void
ibm_exit
(
struct
ibm_struct
*
ibm
);
static
int
__init
ibm_init
(
struct
ibm_struct
*
ibm
)
{
int
ret
;
...
...
@@ -2594,6 +2601,12 @@ static int __init ibm_init(struct ibm_struct *ibm)
if
(
ibm
->
notify
)
{
ret
=
setup_notify
(
ibm
);
if
(
ret
==
-
ENODEV
)
{
printk
(
IBM_NOTICE
"disabling subdriver %s
\n
"
,
ibm
->
name
);
ibm_exit
(
ibm
);
return
0
;
}
if
(
ret
<
0
)
return
ret
;
}
...
...
This diff is collapsed.
Click to expand it.
include/acpi/actypes.h
浏览文件 @
54b8c39f
...
...
@@ -344,7 +344,7 @@ typedef u32 acpi_integer;
/* 64-bit integers */
typedef
u
64
acpi_integer
;
typedef
u
nsigned
long
long
acpi_integer
;
#define ACPI_INTEGER_MAX ACPI_UINT64_MAX
#define ACPI_INTEGER_BIT_SIZE 64
#define ACPI_MAX_DECIMAL_DIGITS 20
/* 2^64 = 18,446,744,073,709,551,616 */
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部