summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2010-04-20 20:28:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2010-04-20 20:28:21 +0000
commit0fb6dad4a0467751f1edfac989732a150c8487ca (patch)
tree7e23e509d4fc29f4526098abb4cae4781e022f17
parent73f0e90efa13f6d471346f741f81b15e0c2eb6b8 (diff)
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))