projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20174b6
)
[CPUFREQ] checkpatch cleanups for elanfreq
author
Dave Jones
<
[email protected]
>
Sun, 18 Jan 2009 03:50:33 +0000
(22:50 -0500)
committer
Dave Jones
<
[email protected]
>
Wed, 25 Feb 2009 03:47:28 +0000
(22:47 -0500)
The remaining warning about the simple_strtoul conversion
to strict_strtoul seems kind of pointless to me.
Signed-off-by: Dave Jones <
[email protected]
>
arch/x86/kernel/cpu/cpufreq/elanfreq.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/cpufreq/elanfreq.c
b/arch/x86/kernel/cpu/cpufreq/elanfreq.c
index fe613c93b3667d73e78ca6747f691232a9233702..006b278b0d5d973f794e3c0f17a0e9f925369f52 100644
(file)
--- a/
arch/x86/kernel/cpu/cpufreq/elanfreq.c
+++ b/
arch/x86/kernel/cpu/cpufreq/elanfreq.c
@@
-184,7
+184,8
@@
static int elanfreq_target(struct cpufreq_policy *policy,
{
unsigned int newstate = 0;
- if (cpufreq_frequency_table_target(policy, &elanfreq_table[0], target_freq, relation, &newstate))
+ if (cpufreq_frequency_table_target(policy, &elanfreq_table[0],
+ target_freq, relation, &newstate))
return -EINVAL;
elanfreq_set_cpu_state(newstate);
@@
-301,7
+302,8
@@
static void __exit elanfreq_exit(void)
module_param(max_freq, int, 0444);
MODULE_LICENSE("GPL");
-MODULE_AUTHOR("Robert Schwebel <
[email protected]
>, Sven Geggus <
[email protected]
>");
+MODULE_AUTHOR("Robert Schwebel <
[email protected]
>, "
+ "Sven Geggus <
[email protected]
>");
MODULE_DESCRIPTION("cpufreq driver for AMD's Elan CPUs");
module_init(elanfreq_init);