Andrew, please apply.
Squash a couple of "pointer from integer" warnings recently
introduced.
Signed-off-by: David Gibson <[email protected]>
Index: working-2.6/arch/ppc64/kernel/process.c
===================================================================
--- working-2.6.orig/arch/ppc64/kernel/process.c 2004-09-24 10:14:09.000000000 +1000
+++ working-2.6/arch/ppc64/kernel/process.c 2004-09-27 15:58:57.422805488 +1000
@@ -410,7 +410,7 @@
unsigned long childregs = (unsigned long)current->thread_info +
THREAD_SIZE;
childregs -= sizeof(struct pt_regs);
- current->thread.regs = childregs;
+ current->thread.regs = (struct pt_regs *)childregs;
}
regs->nip = entry;
Index: working-2.6/arch/ppc64/kernel/sys_ppc32.c
===================================================================
--- working-2.6.orig/arch/ppc64/kernel/sys_ppc32.c 2004-09-24 10:14:09.000000000 +1000
+++ working-2.6/arch/ppc64/kernel/sys_ppc32.c 2004-09-27 15:59:11.094856016 +1000
@@ -642,7 +642,7 @@
unsigned long childregs = (unsigned long)current->thread_info +
THREAD_SIZE;
childregs -= sizeof(struct pt_regs);
- current->thread.regs = childregs;
+ current->thread.regs = (struct pt_regs *)childregs;
}
/*
--
David Gibson | For every complex problem there is a
david AT gibson.dropbear.id.au | solution which is simple, neat and
| wrong.
http://www.ozlabs.org/people/dgibson