summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/Makefile
diff options
context:
space:
mode:
authorTodd Poynor2005-07-01 12:27:05 +0200
committerRussell King2005-07-01 12:27:05 +0200
commit26705ca46bdf81113cc6729eb12b9eee2263bbfc (patch)
treef49950ea17fbdec406404144ee264fa3c6ad5c61 /arch/arm/mach-pxa/Makefile
parentMerge master.kernel.org:/home/rmk/linux-2.6-arm (diff)
downloadkernel-qcow2-linux-26705ca46bdf81113cc6729eb12b9eee2263bbfc.tar.gz
kernel-qcow2-linux-26705ca46bdf81113cc6729eb12b9eee2263bbfc.tar.xz
kernel-qcow2-linux-26705ca46bdf81113cc6729eb12b9eee2263bbfc.zip
[PATCH] ARM: 2781/2: PXA27x Standby mode take 2
Patch from Todd Poynor Add support for PXA27x Standby mode, a low-power mode that retains CPU and some peripheral state (the existing "sleep" mode is a power-power mode that retains less state). Activated via: echo -n standby > /sys/power/state From: David Burrage and Todd Poynor Signed-off-by: Todd Poynor <tpoynor@mvista.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/Makefile')
-rw-r--r--arch/arm/mach-pxa/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile
index c4e6d2523585..efc2f657184e 100644
--- a/arch/arm/mach-pxa/Makefile
+++ b/arch/arm/mach-pxa/Makefile
@@ -24,3 +24,7 @@ obj-$(CONFIG_LEDS) += $(led-y)
# Misc features
obj-$(CONFIG_PM) += pm.o sleep.o
+
+ifeq ($(CONFIG_PXA27x),y)
+obj-$(CONFIG_PM) += standby.o
+endif