diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-16 18:43:28 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-16 18:43:28 +0000 |
commit | cb658bea393ea2d2db4cdec1c3d98ae0493ab9a5 (patch) | |
tree | 7469b7a7a4cad7ade55b945acea447ebb6008545 /sys | |
parent | 70152ba3d955a511841b4510dc80319f1ba48ad8 (diff) |
Remove the wait instruction from cpu_idle_cycle(), as it causes problems on
RM7000 machines.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mips64/mips64/context.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/context.S b/sys/arch/mips64/mips64/context.S index 3c4dd3c75ca..70f35ac3ac9 100644 --- a/sys/arch/mips64/mips64/context.S +++ b/sys/arch/mips64/mips64/context.S @@ -1,4 +1,4 @@ -/* $OpenBSD: context.S,v 1.18 2007/11/24 19:39:20 miod Exp $ */ +/* $OpenBSD: context.S,v 1.19 2008/02/16 18:43:27 miod Exp $ */ /* * Copyright (c) 2002-2003 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -95,7 +95,6 @@ LEAF(cpu_idle_leave, 0) END(cpu_idle_leave) LEAF(cpu_idle_cycle, 0) - wait j ra nop END(cpu_idle_cycle) |