Skip to content

Commit

Permalink
PM / devfreq: exynos4_bus.c: Fixed an alignment of the func call args.
Browse files Browse the repository at this point in the history
I fixed the following check item (via checkpatch.pl --strict option):
CHECK: Alignment should match open parenthesis

Signed-off-by: Sangho Yi <[email protected]>
[Merge conflict resolved]
Signed-off-by: MyungJoo Ham <[email protected]>
  • Loading branch information
antiroot-kr authored and myungjoo committed Nov 20, 2012
1 parent 50a5b33 commit dce9dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/devfreq/exynos4_bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit dce9dc3

Please sign in to comment.