Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
cece9296
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
提交
cece9296
编写于
6月 26, 2006
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ACPI: un-export ACPI_WARNING() -- use printk(KERN_WARNING...)
Signed-off-by:
N
Len Brown
<
len.brown@intel.com
>
上级
64dedfb8
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
54 addition
and
54 deletion
+54
-54
drivers/acpi/bus.c
drivers/acpi/bus.c
+6
-6
drivers/acpi/hotkey.c
drivers/acpi/hotkey.c
+1
-1
drivers/acpi/pci_irq.c
drivers/acpi/pci_irq.c
+4
-4
drivers/acpi/pci_link.c
drivers/acpi/pci_link.c
+17
-17
drivers/acpi/power.c
drivers/acpi/power.c
+3
-3
drivers/acpi/processor_throttling.c
drivers/acpi/processor_throttling.c
+1
-1
drivers/acpi/thermal.c
drivers/acpi/thermal.c
+9
-9
drivers/acpi/utilities/utmisc.c
drivers/acpi/utilities/utmisc.c
+1
-1
drivers/acpi/utils.c
drivers/acpi/utils.c
+12
-12
未找到文件。
drivers/acpi/bus.c
浏览文件 @
cece9296
...
...
@@ -214,13 +214,13 @@ int acpi_bus_set_power(acpi_handle handle, int state)
}
}
if
(
!
device
->
power
.
states
[
state
].
flags
.
valid
)
{
ACPI_WARNING
((
AE_INFO
,
"Device does not support D%d"
,
state
)
);
printk
(
KERN_WARNING
PREFIX
"Device does not support D%d
\n
"
,
state
);
return_VALUE
(
-
ENODEV
);
}
if
(
device
->
parent
&&
(
state
<
device
->
parent
->
power
.
state
))
{
ACPI_WARNING
((
AE_INFO
,
printk
(
KERN_WARNING
PREFIX
"Cannot set device to a higher-powered"
" state than parent
"
)
);
" state than parent
\n
"
);
return_VALUE
(
-
ENODEV
);
}
...
...
@@ -263,9 +263,9 @@ int acpi_bus_set_power(acpi_handle handle, int state)
end:
if
(
result
)
ACPI_WARNING
((
AE_INFO
,
"Transitioning device [%s] to D%d"
,
device
->
pnp
.
bus_id
,
state
)
)
;
printk
(
KERN_WARNING
PREFIX
"Transitioning device [%s] to D%d
\n
"
,
device
->
pnp
.
bus_id
,
state
);
else
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"Device [%s] transitioned to D%d
\n
"
,
...
...
drivers/acpi/hotkey.c
浏览文件 @
cece9296
...
...
@@ -983,7 +983,7 @@ static ssize_t hotkey_execute_aml_method(struct file *file,
}
}
else
{
ACPI_WARNING
((
AE_INFO
,
"Not supported"
)
);
printk
(
KERN_WARNING
"Not supported
\n
"
);
return_VALUE
(
-
EINVAL
);
}
return_VALUE
(
count
);
...
...
drivers/acpi/pci_irq.c
浏览文件 @
cece9296
...
...
@@ -269,8 +269,8 @@ acpi_pci_allocate_irq(struct acpi_prt_entry *entry,
entry
->
link
.
index
,
triggering
,
polarity
,
link
);
if
(
irq
<
0
)
{
ACPI_WARNING
((
AE_INFO
,
"Invalid IRQ link routing entry
"
)
);
printk
(
KERN_WARNING
PREFIX
"Invalid IRQ link routing entry
\n
"
);
return_VALUE
(
-
1
);
}
}
else
{
...
...
@@ -379,8 +379,8 @@ acpi_pci_irq_derive(struct pci_dev *dev,
}
if
(
irq
<
0
)
{
ACPI_WARNING
((
AE_INFO
,
"Unable to derive IRQ for device %s
"
,
pci_name
(
dev
))
)
;
printk
(
KERN_WARNING
PREFIX
"Unable to derive IRQ for device %s
\n
"
,
pci_name
(
dev
));
return_VALUE
(
-
1
);
}
...
...
drivers/acpi/pci_link.c
浏览文件 @
cece9296
...
...
@@ -116,15 +116,15 @@ acpi_pci_link_check_possible(struct acpi_resource *resource, void *context)
{
struct
acpi_resource_irq
*
p
=
&
resource
->
data
.
irq
;
if
(
!
p
||
!
p
->
interrupt_count
)
{
ACPI_WARNING
((
AE_INFO
,
"Blank IRQ resource"
)
);
printk
(
KERN_WARNING
PREFIX
"Blank IRQ resource
\n
"
);
return_ACPI_STATUS
(
AE_OK
);
}
for
(
i
=
0
;
(
i
<
p
->
interrupt_count
&&
i
<
ACPI_PCI_LINK_MAX_POSSIBLE
);
i
++
)
{
if
(
!
p
->
interrupts
[
i
])
{
ACPI_WARNING
((
AE_INFO
,
"Invalid IRQ %d
"
,
p
->
interrupts
[
i
])
)
;
printk
(
KERN_WARNING
PREFIX
"Invalid IRQ %d
\n
"
,
p
->
interrupts
[
i
]);
continue
;
}
link
->
irq
.
possible
[
i
]
=
p
->
interrupts
[
i
];
...
...
@@ -140,16 +140,16 @@ acpi_pci_link_check_possible(struct acpi_resource *resource, void *context)
struct
acpi_resource_extended_irq
*
p
=
&
resource
->
data
.
extended_irq
;
if
(
!
p
||
!
p
->
interrupt_count
)
{
ACPI_WARNING
((
AE_INFO
,
"Blank EXT IRQ resource
"
)
);
printk
(
KERN_WARNING
PREFIX
"Blank EXT IRQ resource
\n
"
);
return_ACPI_STATUS
(
AE_OK
);
}
for
(
i
=
0
;
(
i
<
p
->
interrupt_count
&&
i
<
ACPI_PCI_LINK_MAX_POSSIBLE
);
i
++
)
{
if
(
!
p
->
interrupts
[
i
])
{
ACPI_WARNING
((
AE_INFO
,
"Invalid IRQ %d
"
,
p
->
interrupts
[
i
])
)
;
printk
(
KERN_WARNING
PREFIX
"Invalid IRQ %d
\n
"
,
p
->
interrupts
[
i
]);
continue
;
}
link
->
irq
.
possible
[
i
]
=
p
->
interrupts
[
i
];
...
...
@@ -223,8 +223,8 @@ acpi_pci_link_check_current(struct acpi_resource *resource, void *context)
* extended IRQ descriptors must
* return at least 1 IRQ
*/
ACPI_WARNING
((
AE_INFO
,
"Blank EXT IRQ resource
"
)
);
printk
(
KERN_WARNING
PREFIX
"Blank EXT IRQ resource
\n
"
);
return_ACPI_STATUS
(
AE_OK
);
}
*
irq
=
p
->
interrupts
[
0
];
...
...
@@ -381,10 +381,10 @@ static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
goto
end
;
}
if
(
!
link
->
device
->
status
.
enabled
)
{
ACPI_WARNING
((
AE_INFO
,
"%s [%s] disabled and referenced, BIOS bug"
,
printk
(
KERN_WARNING
PREFIX
"%s [%s] disabled and referenced, BIOS bug
\n
"
,
acpi_device_name
(
link
->
device
),
acpi_device_bid
(
link
->
device
))
)
;
acpi_device_bid
(
link
->
device
));
}
/* Query _CRS, set link->irq.active */
...
...
@@ -402,10 +402,10 @@ static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
* policy: when _CRS doesn't return what we just _SRS
* assume _SRS worked and override _CRS value.
*/
ACPI_WARNING
((
AE_INFO
,
"%s [%s] BIOS reported IRQ %d, using IRQ %d"
,
printk
(
KERN_WARNING
PREFIX
"%s [%s] BIOS reported IRQ %d, using IRQ %d
\n
"
,
acpi_device_name
(
link
->
device
),
acpi_device_bid
(
link
->
device
),
link
->
irq
.
active
,
irq
)
)
;
acpi_device_bid
(
link
->
device
),
link
->
irq
.
active
,
irq
);
link
->
irq
.
active
=
irq
;
}
...
...
@@ -555,8 +555,8 @@ static int acpi_pci_link_allocate(struct acpi_pci_link *link)
*/
if
(
i
==
link
->
irq
.
possible_count
)
{
if
(
acpi_strict
)
ACPI_WARNING
((
AE_INFO
,
"_CRS %d not found"
" in _PRS
"
,
link
->
irq
.
active
)
);
printk
(
KERN_WARNING
PREFIX
"_CRS %d not found"
" in _PRS
\n
"
,
link
->
irq
.
active
);
link
->
irq
.
active
=
0
;
}
...
...
drivers/acpi/power.c
浏览文件 @
cece9296
...
...
@@ -105,7 +105,7 @@ acpi_power_get_context(acpi_handle handle,
result
=
acpi_bus_get_device
(
handle
,
&
device
);
if
(
result
)
{
ACPI_WARNING
((
AE_INFO
,
"Getting context [%p]"
,
handle
)
);
printk
(
KERN_WARNING
PREFIX
"Getting context [%p]
\n
"
,
handle
);
return_VALUE
(
result
);
}
...
...
@@ -441,8 +441,8 @@ int acpi_power_transition(struct acpi_device *device, int state)
device
->
power
.
state
=
state
;
end:
if
(
result
)
ACPI_WARNING
((
AE_INFO
,
"Transitioning device [%s] to D%d
"
,
device
->
pnp
.
bus_id
,
state
)
)
;
printk
(
KERN_WARNING
PREFIX
"Transitioning device [%s] to D%d
\n
"
,
device
->
pnp
.
bus_id
,
state
);
return_VALUE
(
result
);
}
...
...
drivers/acpi/processor_throttling.c
浏览文件 @
cece9296
...
...
@@ -196,7 +196,7 @@ int acpi_processor_get_throttling_info(struct acpi_processor *pr)
}
/* TBD: Support duty_cycle values that span bit 4. */
else
if
((
pr
->
throttling
.
duty_offset
+
pr
->
throttling
.
duty_width
)
>
4
)
{
ACPI_WARNING
((
AE_INFO
,
"duty_cycle spans bit 4"
)
);
printk
(
KERN_WARNING
PREFIX
"duty_cycle spans bit 4
\n
"
);
return_VALUE
(
0
);
}
...
...
drivers/acpi/thermal.c
浏览文件 @
cece9296
...
...
@@ -384,7 +384,7 @@ static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
tz
->
trips
.
passive
.
flags
.
valid
=
0
;
if
(
!
tz
->
trips
.
passive
.
flags
.
valid
)
ACPI_WARNING
((
AE_INFO
,
"Invalid passive threshold"
)
);
printk
(
KERN_WARNING
PREFIX
"Invalid passive threshold
\n
"
);
else
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"Found passive threshold [%lu]
\n
"
,
...
...
@@ -469,7 +469,7 @@ static int acpi_thermal_critical(struct acpi_thermal *tz)
return_VALUE
(
-
EINVAL
);
if
(
tz
->
temperature
>=
tz
->
trips
.
critical
.
temperature
)
{
ACPI_WARNING
((
AE_INFO
,
"Critical trip point"
)
);
printk
(
KERN_WARNING
PREFIX
"Critical trip point
\n
"
);
tz
->
trips
.
critical
.
flags
.
enabled
=
1
;
}
else
if
(
tz
->
trips
.
critical
.
flags
.
enabled
)
tz
->
trips
.
critical
.
flags
.
enabled
=
0
;
...
...
@@ -500,7 +500,7 @@ static int acpi_thermal_hot(struct acpi_thermal *tz)
return_VALUE
(
-
EINVAL
);
if
(
tz
->
temperature
>=
tz
->
trips
.
hot
.
temperature
)
{
ACPI_WARNING
((
AE_INFO
,
"Hot trip point"
)
);
printk
(
KERN_WARNING
PREFIX
"Hot trip point
\n
"
);
tz
->
trips
.
hot
.
flags
.
enabled
=
1
;
}
else
if
(
tz
->
trips
.
hot
.
flags
.
enabled
)
tz
->
trips
.
hot
.
flags
.
enabled
=
0
;
...
...
@@ -640,10 +640,10 @@ static void acpi_thermal_active(struct acpi_thermal *tz)
handles
[
j
],
ACPI_STATE_D0
);
if
(
result
)
{
ACPI_WARNING
((
AE_INFO
,
"Unable to turn cooling device [%p] 'on'"
,
printk
(
KERN_WARNING
PREFIX
"Unable to turn cooling device [%p] 'on'
\n
"
,
active
->
devices
.
handles
[
j
])
)
;
handles
[
j
]);
continue
;
}
active
->
flags
.
enabled
=
1
;
...
...
@@ -665,9 +665,9 @@ static void acpi_thermal_active(struct acpi_thermal *tz)
result
=
acpi_bus_set_power
(
active
->
devices
.
handles
[
j
],
ACPI_STATE_D3
);
if
(
result
)
{
ACPI_WARNING
((
AE_INFO
,
"Unable to turn cooling device [%p] 'off'"
,
active
->
devices
.
handles
[
j
])
)
;
printk
(
KERN_WARNING
PREFIX
"Unable to turn cooling device [%p] 'off'
\n
"
,
active
->
devices
.
handles
[
j
]);
continue
;
}
active
->
flags
.
enabled
=
0
;
...
...
drivers/acpi/utilities/utmisc.c
浏览文件 @
cece9296
...
...
@@ -978,7 +978,7 @@ acpi_ut_warning(char *module_name, u32 line_number, char *format, ...)
acpi_os_vprintf
(
format
,
args
);
acpi_os_printf
(
" [%X]
\n
"
,
ACPI_CA_VERSION
);
}
EXPORT_SYMBOL
(
acpi_ut_warning
);
void
ACPI_INTERNAL_VAR_XFACE
acpi_ut_info
(
char
*
module_name
,
u32
line_number
,
char
*
format
,
...)
{
...
...
drivers/acpi/utils.c
浏览文件 @
cece9296
...
...
@@ -62,25 +62,25 @@ acpi_extract_package(union acpi_object *package,
if
(
!
package
||
(
package
->
type
!=
ACPI_TYPE_PACKAGE
)
||
(
package
->
package
.
count
<
1
))
{
ACPI_WARNING
((
AE_INFO
,
"Invalid package argument"
)
);
printk
(
KERN_WARNING
PREFIX
"Invalid package argument
\n
"
);
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
if
(
!
format
||
!
format
->
pointer
||
(
format
->
length
<
1
))
{
ACPI_WARNING
((
AE_INFO
,
"Invalid format argument"
)
);
printk
(
KERN_WARNING
PREFIX
"Invalid format argument
\n
"
);
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
if
(
!
buffer
)
{
ACPI_WARNING
((
AE_INFO
,
"Invalid buffer argument"
)
);
printk
(
KERN_WARNING
PREFIX
"Invalid buffer argument
\n
"
);
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
format_count
=
(
format
->
length
/
sizeof
(
char
))
-
1
;
if
(
format_count
>
package
->
package
.
count
)
{
ACPI_WARNING
((
AE_INFO
,
"Format specifies more objects [%d]"
" than exist in package [%d]."
,
format_count
,
package
->
package
.
count
)
)
;
printk
(
KERN_WARNING
PREFIX
"Format specifies more objects [%d]"
" than exist in package [%d].
\n
"
,
format_count
,
package
->
package
.
count
);
return_ACPI_STATUS
(
AE_BAD_DATA
);
}
...
...
@@ -112,10 +112,10 @@ acpi_extract_package(union acpi_object *package,
tail_offset
+=
sizeof
(
char
*
);
break
;
default:
ACPI_WARNING
((
AE_INFO
,
"Invalid package element"
printk
(
KERN_WARNING
PREFIX
"Invalid package element"
" [%d]: got number, expecing"
" [%c]"
,
i
,
format_string
[
i
])
)
;
" [%c]
\n
"
,
i
,
format_string
[
i
]);
return_ACPI_STATUS
(
AE_BAD_DATA
);
break
;
}
...
...
@@ -138,10 +138,10 @@ acpi_extract_package(union acpi_object *package,
tail_offset
+=
sizeof
(
u8
*
);
break
;
default:
ACPI_WARNING
((
AE_INFO
,
"Invalid package element"
printk
(
KERN_WARNING
PREFIX
"Invalid package element"
" [%d] got string/buffer,"
" expecing [%c]"
,
i
,
format_string
[
i
])
)
;
" expecing [%c]
\n
"
,
i
,
format_string
[
i
]);
return_ACPI_STATUS
(
AE_BAD_DATA
);
break
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录