svn commit: r242431 - head/sys/arm/mv/armadaxp

Olivier Houchard cognet at FreeBSD.org
Thu Nov 1 12:26:32 UTC 2012


Author: cognet
Date: Thu Nov  1 12:26:31 2012
New Revision: 242431
URL: http://svn.freebsd.org/changeset/base/242431

Log:
  Fix build for SMP.
  
  Submitted by:	Giovanni Trematerra <gianni at freebsd DOT org>

Modified:
  head/sys/arm/mv/armadaxp/armadaxp_mp.c

Modified: head/sys/arm/mv/armadaxp/armadaxp_mp.c
==============================================================================
--- head/sys/arm/mv/armadaxp/armadaxp_mp.c	Thu Nov  1 11:38:34 2012	(r242430)
+++ head/sys/arm/mv/armadaxp/armadaxp_mp.c	Thu Nov  1 12:26:31 2012	(r242431)
@@ -179,7 +179,7 @@ platform_mp_start_ap(void)
 
 	for (cpu_num = 1; cpu_num < mp_ncpus; cpu_num++ )
 		bus_space_write_4(fdtbus_bs_tag, CPU_PMU(cpu_num), CPU_PMU_BOOT,
-		    pmap_kextract(mpentry));
+		    pmap_kextract((vm_offset_t)mpentry));
 
 	cpu_idcache_wbinv_all();
 


More information about the svn-src-all mailing list