diff options
author | Sangho Yi <antiroot@gmail.com> | 2012-10-20 01:16:34 +0900 |
---|---|---|
committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2012-11-20 18:46:24 +0900 |
commit | dce9dc3a24f03b054dae02ef5cf1df7e97a8f558 (patch) | |
tree | 734909bd445ec1f06c3b77ed9542e200a6652d56 /drivers/devfreq | |
parent | 50a5b33e0159f8783ef617cdb9d5fbb6a3955b6f (diff) | |
download | linux-3.10-dce9dc3a24f03b054dae02ef5cf1df7e97a8f558.tar.gz linux-3.10-dce9dc3a24f03b054dae02ef5cf1df7e97a8f558.tar.bz2 linux-3.10-dce9dc3a24f03b054dae02ef5cf1df7e97a8f558.zip |
PM / devfreq: exynos4_bus.c: Fixed an alignment of the func call args.
I fixed the following check item (via checkpatch.pl --strict option):
CHECK: Alignment should match open parenthesis
Signed-off-by: Sangho Yi <antiroot@gmail.com>
[Merge conflict resolved]
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'drivers/devfreq')
-rw-r--r-- | drivers/devfreq/exynos4_bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/devfreq/exynos4_bus.c b/drivers/devfreq/exynos4_bus.c index b8ac28497b3..74183720871 100644 --- a/drivers/devfreq/exynos4_bus.c +++ b/drivers/devfreq/exynos4_bus.c @@ -1030,7 +1030,7 @@ static __devinit int exynos4_busfreq_probe(struct platform_device *pdev) opp = opp_find_freq_floor(dev, &exynos4_devfreq_profile.initial_freq); if (IS_ERR(opp)) { dev_err(dev, "Invalid initial frequency %lu kHz.\n", - exynos4_devfreq_profile.initial_freq); + exynos4_devfreq_profile.initial_freq); return PTR_ERR(opp); } data->curr_opp = opp; |