summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/arch/amd64
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2016-03-20 16:50:29 +0000
committerkrw <krw@openbsd.org>2016-03-20 16:50:29 +0000
commitc05e1f5dbd7b7073c69d00f6853c46a7e2a1c189 (patch)
treeda08b759a5b800c136d76d341893b135cf834aba /sys/lib/libkern/arch/amd64
parentUpdate the axen driver to initialize the hardware on reset. Change was suggested by Takahiro Hayashi. Also lock the mii before performing the write, based on changes in NetBSD. While in there, remove the decaying eeprom code that has been commented out. This allows my adapter to attach reliably, ... (diff)
downloadwireguard-openbsd-c05e1f5dbd7b7073c69d00f6853c46a7e2a1c189.tar.xz
wireguard-openbsd-c05e1f5dbd7b7073c69d00f6853c46a7e2a1c189.zip
" the the " -> " the ", or in a couple of cases replace the superfluous
"the" with the obviously intended word. Started with a "the the" spotted by Mihal Mazurek.
Diffstat (limited to 'sys/lib/libkern/arch/amd64')
-rw-r--r--sys/lib/libkern/arch/amd64/strlen.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/arch/amd64/strlen.S b/sys/lib/libkern/arch/amd64/strlen.S
index fd3fd5c95dc..1528ad3eb67 100644
--- a/sys/lib/libkern/arch/amd64/strlen.S
+++ b/sys/lib/libkern/arch/amd64/strlen.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: strlen.S,v 1.4 2014/12/09 15:13:57 reyk Exp $ */
+/* $OpenBSD: strlen.S,v 1.5 2016/03/20 16:50:30 krw Exp $ */
/* $NetBSD: strlen.S,v 1.6 2014/03/22 19:16:34 jakllsch Exp $ */
/*-
@@ -97,7 +97,7 @@
* presented above, code that uses it will be faster as long as
* the rate of false positives is low.
*
- * This is likely, because the the false positive can only occur
+ * This is likely, because the false positive can only occur
* if the most siginificant bit of a byte within the word is set.
* The expression will never fail for typical 7-bit ASCII strings.
*