diff options
author | Jingoo Han <jg1.han@samsung.com> | 2012-10-31 01:49:13 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2012-11-14 18:33:09 -0500 |
commit | f55c9c26278b0fcfa3336eccbba3d8a782da8aed (patch) | |
tree | 7fba6e99a216987f37b69aaf0956aa9ef39c374f /drivers/cpufreq | |
parent | 7249924e537816368c4a35afd97ab311f75a6368 (diff) |
cpufreq: Remove unnecessary initialization of a local variable
Remove an unnecessary initializer for the 'ret' variable in
__cpufreq_set_policy().
[rjw: Modified the subject and changelog slightly.]
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 2f5ac2dcfda6..1f93dbd72355 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -404,7 +404,7 @@ static int __cpufreq_set_policy(struct cpufreq_policy *data, | |||
404 | static ssize_t store_##file_name \ | 404 | static ssize_t store_##file_name \ |
405 | (struct cpufreq_policy *policy, const char *buf, size_t count) \ | 405 | (struct cpufreq_policy *policy, const char *buf, size_t count) \ |
406 | { \ | 406 | { \ |
407 | unsigned int ret = -EINVAL; \ | 407 | unsigned int ret; \ |
408 | struct cpufreq_policy new_policy; \ | 408 | struct cpufreq_policy new_policy; \ |
409 | \ | 409 | \ |
410 | ret = cpufreq_get_policy(&new_policy, policy->cpu); \ | 410 | ret = cpufreq_get_policy(&new_policy, policy->cpu); \ |
@@ -459,7 +459,7 @@ static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf) | |||
459 | static ssize_t store_scaling_governor(struct cpufreq_policy *policy, | 459 | static ssize_t store_scaling_governor(struct cpufreq_policy *policy, |
460 | const char *buf, size_t count) | 460 | const char *buf, size_t count) |
461 | { | 461 | { |
462 | unsigned int ret = -EINVAL; | 462 | unsigned int ret; |
463 | char str_governor[16]; | 463 | char str_governor[16]; |
464 | struct cpufreq_policy new_policy; | 464 | struct cpufreq_policy new_policy; |
465 | 465 | ||