diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2012-04-28 14:42:49 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2012-04-28 14:42:49 +0000 |
commit | 98252594c859c714a7cd99faaf6899283b04cee4 (patch) | |
tree | 723a8254ee553a6f83c7a07641205981c28d6a44 | |
parent | b94d2735144ab4ea2df945844d91a9ea33d6c08a (diff) | |
download | FreeBSD-src-98252594c859c714a7cd99faaf6899283b04cee4.zip FreeBSD-src-98252594c859c714a7cd99faaf6899283b04cee4.tar.gz |
Fix build on 32-bit systems.
-rw-r--r-- | sys/powerpc/aim/moea64_native.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/aim/moea64_native.c b/sys/powerpc/aim/moea64_native.c index 41e8593..3da2f5a 100644 --- a/sys/powerpc/aim/moea64_native.c +++ b/sys/powerpc/aim/moea64_native.c @@ -174,7 +174,7 @@ TLBIE(uint64_t vpn) { ptesync;" : "=r"(msr), "=r"(scratch) : "r"(vpn_hi), "r"(vpn_lo), "r"(32), "r"(1) : "memory"); - intr_enable(); + intr_restore(intr); #endif /* No barriers or special ops -- taken care of by ptesync above */ |