summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/lparcfg.c
diff options
context:
space:
mode:
authorPaul Mackerras2005-11-11 13:04:40 +0100
committerPaul Mackerras2005-11-11 13:04:40 +0100
commit271c3f35bd36613513e2c2cc90dc914a84df116e (patch)
tree44cb3338aa51be48123211426ad039016ef81902 /arch/powerpc/kernel/lparcfg.c
parentpowerpc: Fix reading and writing SPRs from xmon on 32-bit (diff)
downloadkernel-qcow2-linux-271c3f35bd36613513e2c2cc90dc914a84df116e.tar.gz
kernel-qcow2-linux-271c3f35bd36613513e2c2cc90dc914a84df116e.tar.xz
kernel-qcow2-linux-271c3f35bd36613513e2c2cc90dc914a84df116e.zip
powerpc: Fix some compile problems with the VDSO stuff
We needed the VDSO symbols in the arch/ppc asm-offsets.c, and there were a few usages of _systemcfg still left lying around. Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/lparcfg.c')
-rw-r--r--arch/powerpc/kernel/lparcfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/lparcfg.c b/arch/powerpc/kernel/lparcfg.c
index e45ce48ec126..1b3ba8a440a6 100644
--- a/arch/powerpc/kernel/lparcfg.c
+++ b/arch/powerpc/kernel/lparcfg.c
@@ -35,7 +35,7 @@
#include <asm/time.h>
#include <asm/iseries/it_exp_vpd_panel.h>
#include <asm/prom.h>
-#include <asm/systemcfg.h>
+#include <asm/vdso_datapage.h>
#define MODULE_VERS "1.6"
#define MODULE_NAME "lparcfg"
@@ -369,7 +369,7 @@ static int lparcfg_data(struct seq_file *m, void *v)
lrdrp = (int *)get_property(rtas_node, "ibm,lrdr-capacity", NULL);
if (lrdrp == NULL) {
- partition_potential_processors = _systemcfg->processorCount;
+ partition_potential_processors = vdso_data->processorCount;
} else {
partition_potential_processors = *(lrdrp + 4);
}