Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e19717fe
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
e19717fe
编写于
2月 06, 2008
作者:
D
Dave Jones
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CPUFREQ] Add missing printk levels to e_powersaver
Signed-off-by:
N
Dave Jones
<
davej@redhat.com
>
上级
89c04849
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
12 deletion
+12
-12
arch/x86/kernel/cpu/cpufreq/e_powersaver.c
arch/x86/kernel/cpu/cpufreq/e_powersaver.c
+12
-12
未找到文件。
arch/x86/kernel/cpu/cpufreq/e_powersaver.c
浏览文件 @
e19717fe
...
...
@@ -165,7 +165,7 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
return
-
ENODEV
;
/* Check brand */
printk
(
"eps: Detected VIA "
);
printk
(
KERN_INFO
"eps: Detected VIA "
);
switch
(
c
->
x86_model
)
{
case
10
:
...
...
@@ -182,19 +182,19 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
switch
(
brand
)
{
case
EPS_BRAND_C7M
:
printk
(
"C7-M
\n
"
);
printk
(
KERN_CONT
"C7-M
\n
"
);
break
;
case
EPS_BRAND_C7
:
printk
(
"C7
\n
"
);
printk
(
KERN_CONT
"C7
\n
"
);
break
;
case
EPS_BRAND_EDEN
:
printk
(
"Eden
\n
"
);
printk
(
KERN_CONT
"Eden
\n
"
);
break
;
case
EPS_BRAND_C7D
:
printk
(
KERN_CONT
"C7-D
\n
"
);
break
;
case
EPS_BRAND_C3
:
printk
(
"C3
\n
"
);
printk
(
KERN_CONT
"C3
\n
"
);
return
-
ENODEV
;
break
;
}
...
...
@@ -206,7 +206,7 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
/* Can be locked at 0 */
rdmsrl
(
MSR_IA32_MISC_ENABLE
,
val
);
if
(
!
(
val
&
1
<<
16
))
{
printk
(
"eps: Can't enable Enhanced PowerSaver
\n
"
);
printk
(
KERN_INFO
"eps: Can't enable Enhanced PowerSaver
\n
"
);
return
-
ENODEV
;
}
}
...
...
@@ -214,19 +214,19 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
/* Print voltage and multiplier */
rdmsr
(
MSR_IA32_PERF_STATUS
,
lo
,
hi
);
current_voltage
=
lo
&
0xff
;
printk
(
"eps: Current voltage = %dmV
\n
"
,
current_voltage
*
16
+
700
);
printk
(
KERN_INFO
"eps: Current voltage = %dmV
\n
"
,
current_voltage
*
16
+
700
);
current_multiplier
=
(
lo
>>
8
)
&
0xff
;
printk
(
"eps: Current multiplier = %d
\n
"
,
current_multiplier
);
printk
(
KERN_INFO
"eps: Current multiplier = %d
\n
"
,
current_multiplier
);
/* Print limits */
max_voltage
=
hi
&
0xff
;
printk
(
"eps: Highest voltage = %dmV
\n
"
,
max_voltage
*
16
+
700
);
printk
(
KERN_INFO
"eps: Highest voltage = %dmV
\n
"
,
max_voltage
*
16
+
700
);
max_multiplier
=
(
hi
>>
8
)
&
0xff
;
printk
(
"eps: Highest multiplier = %d
\n
"
,
max_multiplier
);
printk
(
KERN_INFO
"eps: Highest multiplier = %d
\n
"
,
max_multiplier
);
min_voltage
=
(
hi
>>
16
)
&
0xff
;
printk
(
"eps: Lowest voltage = %dmV
\n
"
,
min_voltage
*
16
+
700
);
printk
(
KERN_INFO
"eps: Lowest voltage = %dmV
\n
"
,
min_voltage
*
16
+
700
);
min_multiplier
=
(
hi
>>
24
)
&
0xff
;
printk
(
"eps: Lowest multiplier = %d
\n
"
,
min_multiplier
);
printk
(
KERN_INFO
"eps: Lowest multiplier = %d
\n
"
,
min_multiplier
);
/* Sanity checks */
if
(
current_multiplier
==
0
||
max_multiplier
==
0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录