diff options
author | Sekhar Nori <nsekhar@ti.com> | 2009-09-22 11:44:00 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-11-25 13:21:28 -0500 |
commit | 6601b8030de3e9c29930684eeac15302a59f991a (patch) | |
tree | ef425f3cad13bf1ab86060c5fa6e128345b9686d /arch/arm/mach-davinci/Makefile | |
parent | a75fd514f4871eb08aed41fc34ed716e0b78f750 (diff) |
davinci: add generic CPUFreq driver for DaVinci
Adds a basic CPUFreq driver for DaVinci devices registering with the
kernel CPUFreq infrastructure.
Support is added for both frequency and voltage regulation.
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/Makefile')
-rw-r--r-- | arch/arm/mach-davinci/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/Makefile b/arch/arm/mach-davinci/Makefile index 2e11e847313b..be629c54e212 100644 --- a/arch/arm/mach-davinci/Makefile +++ b/arch/arm/mach-davinci/Makefile | |||
@@ -29,3 +29,6 @@ obj-$(CONFIG_MACH_DAVINCI_DM6467_EVM) += board-dm646x-evm.o | |||
29 | obj-$(CONFIG_MACH_DAVINCI_DM365_EVM) += board-dm365-evm.o | 29 | obj-$(CONFIG_MACH_DAVINCI_DM365_EVM) += board-dm365-evm.o |
30 | obj-$(CONFIG_MACH_DAVINCI_DA830_EVM) += board-da830-evm.o | 30 | obj-$(CONFIG_MACH_DAVINCI_DA830_EVM) += board-da830-evm.o |
31 | obj-$(CONFIG_MACH_DAVINCI_DA850_EVM) += board-da850-evm.o | 31 | obj-$(CONFIG_MACH_DAVINCI_DA850_EVM) += board-da850-evm.o |
32 | |||
33 | # Power Management | ||
34 | obj-$(CONFIG_CPU_FREQ) += cpufreq.o | ||