|
@@ -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. */
|