diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2010-06-17 15:48:43 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-09-21 11:51:23 -0700 |
commit | e933ec7c4ebd7e7daaad67b22e5f4a9a0ab102ea (patch) | |
tree | 1cfd54ce1c9175e53d7ab6fa24329bdea8c51330 /arch/arm/mach-omap1/Makefile | |
parent | 57e6fe7b888e17f814bd35b7700ded51aa9a6a83 (diff) | |
download | op-kernel-dev-e933ec7c4ebd7e7daaad67b22e5f4a9a0ab102ea.zip op-kernel-dev-e933ec7c4ebd7e7daaad67b22e5f4a9a0ab102ea.tar.gz |
OMAP1: PM: add simple runtime PM layer to manage clocks
On OMAP1, we do not have omap_device + omap_hwmod to manage the
device-specific idle, enable and shutdown. Instead, just
enable/disable device clocks automatically at the runtime PM level.
This allows drivers to not have any OMAP1 specific clock management
and allows them to simply use the runtime PM API to manage clocks.
OMAP1 compile fixes Manjunatha GK <manjugk@ti.com>
Cc: Manjunatha GK <manjugk@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap1/Makefile')
-rw-r--r-- | arch/arm/mach-omap1/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/Makefile b/arch/arm/mach-omap1/Makefile index facfaeb..9a304d8 100644 --- a/arch/arm/mach-omap1/Makefile +++ b/arch/arm/mach-omap1/Makefile @@ -12,7 +12,7 @@ obj-$(CONFIG_OMAP_MPU_TIMER) += time.o obj-$(CONFIG_OMAP_32K_TIMER) += timer32k.o # Power Management -obj-$(CONFIG_PM) += pm.o sleep.o +obj-$(CONFIG_PM) += pm.o sleep.o pm_bus.o # DSP obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox_mach.o |