summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-07-02 04:11:32 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-07-02 04:11:32 +0000
commit9477ac6198719633197f16d8035e390953671476 (patch)
treefa0f5d48c4d5daaf66d5300a8f8a37a853cf14f1 /sys/arch/hppa
parentc23a0ceea58f21ceb8556f75a35c815b42281e68 (diff)
constraints misscount; that's how it goes typing on the train
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/include/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/cpu.h b/sys/arch/hppa/include/cpu.h
index c274cc0b127..a363b549a6d 100644
--- a/sys/arch/hppa/include/cpu.h
+++ b/sys/arch/hppa/include/cpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.h,v 1.16 2000/07/02 02:41:56 mickey Exp $ */
+/* $OpenBSD: cpu.h,v 1.17 2000/07/02 04:11:31 mickey Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -133,7 +133,7 @@ kvtop (const caddr_t va)
{
long ret;
/* XXX will it keep page offset ok? */
- __asm __volatile ("lpa %%r0(%0), %1" : "=r" (ret) : "r" (va));
+ __asm __volatile ("lpa %%r0(%1), %0" : "=r" (ret) : "r" (va));
return ret;
}