Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 172546
b: refs/heads/master
c: 383af9c
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown authored and Ben Dooks committed Dec 1, 2009
1 parent 94387d5 commit bba2ed5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 42015c133b74f2f483798d58683ac17b587f7bbb
refs/heads/master: 383af9c2586e0c51e27ed4f186a2f23f8e889054
5 changes: 4 additions & 1 deletion trunk/arch/arm/plat-s3c64xx/cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,11 @@ static int __init s3c64xx_cpufreq_driver_init(struct cpufreq_policy *policy)
/* Check for frequencies we can generate */
r = clk_round_rate(armclk, freq->frequency * 1000);
r /= 1000;
if (r != freq->frequency)
if (r != freq->frequency) {
pr_debug("cpufreq: %dkHz unsupported by clock\n",
freq->frequency);
freq->frequency = CPUFREQ_ENTRY_INVALID;
}

/* If we have no regulator then assume startup
* frequency is the maximum we can support. */
Expand Down

0 comments on commit bba2ed5

Please sign in to comment.