summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/setup_32.c
diff options
context:
space:
mode:
authorPaul Mackerras2005-10-10 14:58:10 +0200
committerPaul Mackerras2005-10-10 14:58:10 +0200
commite574d238ab907963ae6f97cb6bf12bb8fd48c376 (patch)
tree038a29b3ec5d61a6f5cb3f17ae671ea6471eeb47 /arch/powerpc/kernel/setup_32.c
parentpowerpc: Fix off-by-one error in prom_init.c (diff)
downloadkernel-qcow2-linux-e574d238ab907963ae6f97cb6bf12bb8fd48c376.tar.gz
kernel-qcow2-linux-e574d238ab907963ae6f97cb6bf12bb8fd48c376.tar.xz
kernel-qcow2-linux-e574d238ab907963ae6f97cb6bf12bb8fd48c376.zip
powerpc: Fix compilation for 32-bit configs
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/setup_32.c')
-rw-r--r--arch/powerpc/kernel/setup_32.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c
index 27d7f828212b..bfa155c00ea5 100644
--- a/arch/powerpc/kernel/setup_32.c
+++ b/arch/powerpc/kernel/setup_32.c
@@ -70,6 +70,8 @@ unsigned long ISA_DMA_THRESHOLD;
unsigned int DMA_MODE_READ;
unsigned int DMA_MODE_WRITE;
+int have_of = 1;
+
#ifdef CONFIG_PPC_MULTIPLATFORM
int _machine = 0;
@@ -89,6 +91,7 @@ unsigned long vgacon_remap_base;
#endif
struct machdep_calls ppc_md;
+EXPORT_SYMBOL(ppc_md);
/*
* These are used in binfmt_elf.c to put aux entries on the stack
@@ -455,24 +458,6 @@ console_initcall(set_preferred_console);
#endif /* CONFIG_SERIAL_CORE_CONSOLE */
#endif /* CONFIG_PPC_MULTIPLATFORM */
-struct bi_record *find_bootinfo(void)
-{
- struct bi_record *rec;
-
- rec = (struct bi_record *)_ALIGN((ulong)__bss_start+(1<<20)-1,(1<<20));
- if ( rec->tag != BI_FIRST ) {
- /*
- * This 0x10000 offset is a terrible hack but it will go away when
- * we have the bootloader handle all the relocation and
- * prom calls -- Cort
- */
- rec = (struct bi_record *)_ALIGN((ulong)__bss_start+0x10000+(1<<20)-1,(1<<20));
- if ( rec->tag != BI_FIRST )
- return NULL;
- }
- return rec;
-}
-
/*
* Find out what kind of machine we're on and save any data we need
* from the early boot process (devtree is copied on pmac by prom_init()).