svn commit: r202904 - head/sys/ia64/ia64

Marcel Moolenaar marcel at FreeBSD.org
Sat Jan 23 23:16:50 UTC 2010


Author: marcel
Date: Sat Jan 23 23:16:50 2010
New Revision: 202904
URL: http://svn.freebsd.org/changeset/base/202904

Log:
  Remove cpu_boot() and call efi_reset_system() directly from
  cpu_reset().

Modified:
  head/sys/ia64/ia64/machdep.c

Modified: head/sys/ia64/ia64/machdep.c
==============================================================================
--- head/sys/ia64/ia64/machdep.c	Sat Jan 23 22:38:01 2010	(r202903)
+++ head/sys/ia64/ia64/machdep.c	Sat Jan 23 23:16:50 2010	(r202904)
@@ -373,13 +373,6 @@ cpu_startup(void *dummy)
 SYSINIT(cpu_startup, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
 
 void
-cpu_boot(int howto)
-{
-
-	efi_reset_system();
-}
-
-void
 cpu_flush_dcache(void *ptr, size_t len)
 {
 	vm_offset_t lim, va;
@@ -434,7 +427,7 @@ void
 cpu_reset()
 {
 
-	cpu_boot(0);
+	efi_reset_system();
 }
 
 void


More information about the svn-src-head mailing list