mirror of
https://github.com/adulau/aha.git
synced 2024-12-31 21:26:18 +00:00
[CPUFREQ] checkpatch cleanups for elanfreq
The remaining warning about the simple_strtoul conversion to strict_strtoul seems kind of pointless to me. Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
20174b65d9
commit
04cd1a99dc
1 changed files with 4 additions and 2 deletions
|
@ -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 <r.schwebel@pengutronix.de>, Sven Geggus <sven@geggus.net>");
|
||||
MODULE_AUTHOR("Robert Schwebel <r.schwebel@pengutronix.de>, "
|
||||
"Sven Geggus <sven@geggus.net>");
|
||||
MODULE_DESCRIPTION("cpufreq driver for AMD's Elan CPUs");
|
||||
|
||||
module_init(elanfreq_init);
|
||||
|
|
Loading…
Reference in a new issue