summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2010-04-20 20:28:18 +0000
committermiod <miod@openbsd.org>2010-04-20 20:28:18 +0000
commitc491dca008fa7eaa387fb9639158b414aec203c6 (patch)
tree9e0a58afafc6547b42d1af6d2cb3df5469ce9604
parentCorrect map definition syntax. Reported by Rene Maroufi <info@maroufi.net>. (diff)
downloadwireguard-openbsd-c491dca008fa7eaa387fb9639158b414aec203c6.tar.xz
wireguard-openbsd-c491dca008fa7eaa387fb9639158b414aec203c6.zip
destintation -> destination
-rw-r--r--sys/arch/m88k/m88k/subr.S6
-rw-r--r--sys/lib/libkern/arch/m88k/copy_subr.S6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/m88k/m88k/subr.S b/sys/arch/m88k/m88k/subr.S
index 2062bfbdafc..f4fd3f01f19 100644
--- a/sys/arch/m88k/m88k/subr.S
+++ b/sys/arch/m88k/m88k/subr.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr.S,v 1.17 2008/02/20 18:35:41 miod Exp $ */
+/* $OpenBSD: subr.S,v 1.18 2010/04/20 20:28:18 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1993-1992 Carnegie Mellon University
@@ -744,7 +744,7 @@ ENTRY(kcopy)
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
- mask r7,r3,3 /* get 2 low order bits of destintation addr */
+ mask r7,r3,3 /* get 2 low order bits of destination addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(kf_strat))
@@ -867,7 +867,7 @@ ASLOCAL(kcopy_reverse)
* determine copy strategy based on alignment of source and destination
*/
mask r6,r2,3 /* get 2 low order bits of source address */
- mask r7,r3,3 /* get 2 low order bits of destintation addr */
+ mask r7,r3,3 /* get 2 low order bits of destination addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(kr_strat))
diff --git a/sys/lib/libkern/arch/m88k/copy_subr.S b/sys/lib/libkern/arch/m88k/copy_subr.S
index a8aef9c6b44..8673a5c9cb3 100644
--- a/sys/lib/libkern/arch/m88k/copy_subr.S
+++ b/sys/lib/libkern/arch/m88k/copy_subr.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: copy_subr.S,v 1.1 2006/11/17 22:32:38 miod Exp $ */
+/* $OpenBSD: copy_subr.S,v 1.2 2010/04/20 20:28:20 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1993-1992 Carnegie Mellon University
@@ -83,7 +83,7 @@ ENTRY(ovbcopy)
* determine copy strategy based on alignment of source and destination
*/
mask r6,SRC,3 /* get 2 low order bits of source address */
- mask r7,DST,3 /* get 2 low order bits of destintation addr */
+ mask r7,DST,3 /* get 2 low order bits of destination addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(f_strat))
@@ -207,7 +207,7 @@ ASLOCAL(bcopy_reverse)
* determine copy strategy based on alignment of source and destination
*/
mask r6,SRC,3 /* get 2 low order bits of source address */
- mask r7,DST,3 /* get 2 low order bits of destintation addr */
+ mask r7,DST,3 /* get 2 low order bits of destination addr */
mak r6,r6,0<4> /* convert source bits to table offset */
mak r7,r7,0<2> /* convert destination bits to table offset */
or.u r12,r0,hi16(_ASM_LABEL(r_strat))