mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
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>
This commit is contained in:
parent
50a5b33e01
commit
dce9dc3a24
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
opp = opp_find_freq_floor(dev, &exynos4_devfreq_profile.initial_freq);
|
||||||
if (IS_ERR(opp)) {
|
if (IS_ERR(opp)) {
|
||||||
dev_err(dev, "Invalid initial frequency %lu kHz.\n",
|
dev_err(dev, "Invalid initial frequency %lu kHz.\n",
|
||||||
exynos4_devfreq_profile.initial_freq);
|
exynos4_devfreq_profile.initial_freq);
|
||||||
return PTR_ERR(opp);
|
return PTR_ERR(opp);
|
||||||
}
|
}
|
||||||
data->curr_opp = opp;
|
data->curr_opp = opp;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue