diff options
author | Kevin Hilman <khilman@ti.com> | 2011-03-21 14:29:13 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-09-15 11:39:11 -0700 |
commit | 01f48d308db1cfcfb0151d8d91153fd73e84ae40 (patch) | |
tree | 2b36a459bb9ea482cdf60cfaf79c4e4996d599dc /arch/arm/mach-omap2/Makefile | |
parent | 4d47506a85a9f2e745dc63215594e9f799aff3dc (diff) | |
download | linux-stable-01f48d308db1cfcfb0151d8d91153fd73e84ae40.tar.gz linux-stable-01f48d308db1cfcfb0151d8d91153fd73e84ae40.tar.bz2 linux-stable-01f48d308db1cfcfb0151d8d91153fd73e84ae40.zip |
OMAP2+: voltage: split out voltage processor (VP) code into new layer
This patch is primarily a move of VP specific code from voltage.c into
its own code in vp.c and adds prototypes to vp.h
No functional changes, except debugfs...
VP debugfs moved to 'vp' subdir of <debugfs>/voltage/ and 'vp_'
prefixes removed from all debugfs filenames.
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/Makefile')
-rw-r--r-- | arch/arm/mach-omap2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 59db6d9ba244..824718969e31 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -90,7 +90,7 @@ obj-$(CONFIG_ARCH_OMAP4) += prcm.o cm2xxx_3xxx.o cminst44xx.o \ # OMAP voltage domains ifeq ($(CONFIG_PM),y) -voltagedomain-common := voltage.o vc.o +voltagedomain-common := voltage.o vc.o vp.o obj-$(CONFIG_ARCH_OMAP2) += $(voltagedomain-common) \ voltagedomains2xxx_data.o obj-$(CONFIG_ARCH_OMAP3) += $(voltagedomain-common) \ |