diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-07-20 13:38:19 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-07-20 13:38:19 +0900 |
commit | cb5ec75b8b0410bba4ae612d13a2f26e938bc49c (patch) | |
tree | dacfe59494055f6cfb862e49a033b6e03203c6d6 /arch/sh/Kconfig | |
parent | fe04d7798f611bca333df27d44484bdd62eef53f (diff) |
sh: cpufreq: clock framework support.
This gets the SH cpufreq working again. We follow the changes
in the AVR32 implementation for wrapping in to the clock framework.
CPUs that wish to use this are required to define rate rounding
primitives in order to satisfy clk_round_rate().
This works well enough for the common case, though we should
look at unifying this driver across all of the platforms that
implement clock framework support in one capacity or another.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 2a9682e1306e..ddfd358a67c1 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -475,7 +475,7 @@ source "drivers/cpufreq/Kconfig" config SH_CPU_FREQ tristate "SuperH CPU Frequency driver" - depends on CPU_FREQ && CPU_SH4 && BROKEN + depends on CPU_FREQ select CPU_FREQ_TABLE help This adds the cpufreq driver for SuperH. At present, only |