diff options
author | Stephen Rothwell | 2007-05-09 18:19:51 +0200 |
---|---|---|
committer | Paul Mackerras | 2007-05-10 13:28:13 +0200 |
commit | 49d687b636c1f7e9a14faab7bd654f9fb88ecd11 (patch) | |
tree | eded43f542a7245f45de34609d158dcfad7c3f82 /include/linux | |
parent | [POWERPC] Fix incorrect calculation of I/O window addresses (diff) | |
download | kernel-qcow2-linux-49d687b636c1f7e9a14faab7bd654f9fb88ecd11.tar.gz kernel-qcow2-linux-49d687b636c1f7e9a14faab7bd654f9fb88ecd11.tar.xz kernel-qcow2-linux-49d687b636c1f7e9a14faab7bd654f9fb88ecd11.zip |
[POWERPC] pmu_sys_suspended is only defined for PPC32
thus we get a link error on ppc64 with CONFIG_PM=y. This fixes it.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/pmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pmu.h b/include/linux/pmu.h index 37ca57392add..5ad913ff02b2 100644 --- a/include/linux/pmu.h +++ b/include/linux/pmu.h @@ -226,7 +226,7 @@ extern unsigned int pmu_power_flags; extern void pmu_backlight_init(void); /* some code needs to know if the PMU was suspended for hibernation */ -#ifdef CONFIG_PM +#if defined(CONFIG_PM) && defined(CONFIG_PPC32) extern int pmu_sys_suspended; #else /* if power management is not configured it can't be suspended */ |