diff options
author | Nicolas Pitre <nico@org.rmk.(none)> | 2005-06-13 22:35:41 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-06-13 22:35:41 +0100 |
commit | a8fa3f0c59f8a1e1d89542cff0be5b057b684653 (patch) | |
tree | 4e5cf8eadec0948c107c17b00db9b999ab1e469f /arch/arm/mach-pxa/pxa25x.c | |
parent | c0105338eb4e61e537ca34ae06921177cb6efcf0 (diff) | |
download | op-kernel-dev-a8fa3f0c59f8a1e1d89542cff0be5b057b684653.zip op-kernel-dev-a8fa3f0c59f8a1e1d89542cff0be5b057b684653.tar.gz |
[PATCH] ARM: 2711/1: fix compilation on PXA targets with CONFIG_PM=n
Patch from Nicolas Pitre
Signed-off-by: Nicolas Pitre
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/pxa25x.c')
-rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index b6d945a..7869c3b 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -16,6 +16,7 @@ * initialization stuff for PXA machines which can be overridden later if * need be. */ +#include <linux/config.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> @@ -103,6 +104,7 @@ unsigned int get_lcdclk_frequency_10khz(void) EXPORT_SYMBOL(get_lcdclk_frequency_10khz); +#ifdef CONFIG_PM int pxa_cpu_pm_prepare(suspend_state_t state) { @@ -131,3 +133,5 @@ void pxa_cpu_pm_enter(suspend_state_t state) break; } } + +#endif |