aboutsummaryrefslogtreecommitdiff
path: root/sys/ia64
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2010-01-23 23:16:50 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2010-01-23 23:16:50 +0000
commit5111f97cde83f46f9acdcfa8ce76d5e983ded433 (patch)
tree0412a9bacc9870acb40f710e8d9cf94969c1a35e /sys/ia64
parent9251d56f5fe84b9b7b1fa3a4dd6168e57cf2f909 (diff)
downloadsrc-5111f97cde83f46f9acdcfa8ce76d5e983ded433.tar.gz
src-5111f97cde83f46f9acdcfa8ce76d5e983ded433.zip
Remove cpu_boot() and call efi_reset_system() directly from
cpu_reset().
Notes
Notes: svn path=/head/; revision=202904
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/machdep.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c
index 95b604f6c9ff..fd5d781ca7eb 100644
--- a/sys/ia64/ia64/machdep.c
+++ b/sys/ia64/ia64/machdep.c
@@ -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