aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/mpparse.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-10 09:54:46 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-10 09:54:46 +0000
commitde36879421e4facb7ac26f428626a58dec887969 (patch)
treedcff2fbd17dc99ae9e73878e49f64a898c93f350 /xen/arch/x86/mpparse.c
parent3c8ef09d04979ca53f6424a82e31d69a75dc8af8 (diff)
downloadxen-de36879421e4facb7ac26f428626a58dec887969.tar.gz
xen-de36879421e4facb7ac26f428626a58dec887969.tar.bz2
xen-de36879421e4facb7ac26f428626a58dec887969.zip
bitkeeper revision 1.1389.5.40 (428084e6OcTkByL6plgj4UPN6alYkA)
Fix the 64-bit build. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/arch/x86/mpparse.c')
-rw-r--r--xen/arch/x86/mpparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/mpparse.c b/xen/arch/x86/mpparse.c
index 39a7619edc..09a55805e1 100644
--- a/xen/arch/x86/mpparse.c
+++ b/xen/arch/x86/mpparse.c
@@ -690,7 +690,7 @@ void __init get_smp_config (void)
* Read the physical hardware table. Anything here will
* override the defaults.
*/
- if (!smp_read_mpc((void *)mpf->mpf_physptr)) {
+ if (!smp_read_mpc((void *)(unsigned long)mpf->mpf_physptr)) {
smp_found_config = 0;
printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");