[TRIVIAL, PPC64] Squash childregs warnings

From: David Gibson
Date: Tue Sep 28 2004 - 00:54:34 EST


Andrew, please apply.

Squash a couple of "pointer from integer" warnings recently
introduced.

Signed-off-by: David Gibson <dwg@xxxxxxxxxxx>

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
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/