Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/impliment/implement/ in comment.
details: https://anonhg.NetBSD.org/src/rev/5f0b6ca215f8
branches: trunk
changeset: 1008767:5f0b6ca215f8
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Thu Apr 02 15:30:25 2020 +0000
description:
s/impliment/implement/ in comment.
diffstat:
doc/CHANGES.prev | 6 +++---
include/rpcsvc/yp_prot.h | 6 +++---
sys/arch/emips/include/bus.h | 4 ++--
sys/arch/evbcf/include/bus_space.h | 4 ++--
sys/arch/hp300/include/bus.h | 4 ++--
sys/arch/luna68k/include/bus.h | 4 ++--
sys/arch/mac68k/include/bus.h | 6 +++---
sys/arch/mvme68k/include/bus_space.h | 4 ++--
sys/arch/news68k/include/bus.h | 4 ++--
sys/arch/newsmips/include/bus.h | 4 ++--
sys/arch/next68k/include/bus_space.h | 4 ++--
sys/dev/pci/if_tireg.h | 6 +++---
12 files changed, 28 insertions(+), 28 deletions(-)
diffs (239 lines):
diff -r bcc42943b0c0 -r 5f0b6ca215f8 doc/CHANGES.prev
--- a/doc/CHANGES.prev Thu Apr 02 14:11:59 2020 +0000
+++ b/doc/CHANGES.prev Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-LIST OF CHANGES FROM PREVIOUS RELEASES: <$Revision: 1.153 $>
+LIST OF CHANGES FROM PREVIOUS RELEASES: <$Revision: 1.154 $>
Changes from 386bsd 0.1 + patchkit 0.2.2 to NetBSD 0.8:
@@ -1062,7 +1062,7 @@
compat/sunos, m68k, sparc: move sunos emulation code code to
/sys/compat/sunos, for use by all m68k and sparc ports.
significantly cleaned and extended up from Torek's base, with
- help at implimenting various system calls and ioctl's from mw
+ help at implementing various system calls and ioctl's from mw
& pk. (deraadt)
don't permit TIOCSCTTY on /dev/tty, or kernel recursion happens.
from Lars Fredriksen <ludvig!lars%wixer.bga.com@localhost> (deraadt)
@@ -1092,7 +1092,7 @@
tunnel driver cleanup done by Brad Parker <brad%fcr.com@localhost>
and myself (deraadt)
upgraded lex to version 2.4.5. (jtc)
- tty subsystem VMIN/VTIME implimentation from Marc Teitelbaum
+ tty subsystem VMIN/VTIME implementation from Marc Teitelbaum
<marc%vangogh.cs.berkeley.edu@localhost> (deraadt)
multicast patches added.
Original code by Steve Mccanne and LBL. NetBSD patches
diff -r bcc42943b0c0 -r 5f0b6ca215f8 include/rpcsvc/yp_prot.h
--- a/include/rpcsvc/yp_prot.h Thu Apr 02 14:11:59 2020 +0000
+++ b/include/rpcsvc/yp_prot.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: yp_prot.h,v 1.19 2016/01/22 23:22:56 dholland Exp $ */
+/* $NetBSD: yp_prot.h,v 1.20 2020/04/02 15:30:25 msaitoh Exp $ */
/*
* Copyright (c) 1992, 1993 Theo de Raadt <deraadt%fsa.ca@localhost>
@@ -269,8 +269,8 @@
* is supplied to ypxfr as a command-line parameter when it
* is activated by ypserv."
*
- * This protocol is not implimented, naturally, because this YP
- * implimentation only does the client side.
+ * This protocol is not implemented, naturally, because this YP
+ * implementation only does the client side.
*/
#define YPPUSHVERS ((unsigned long)1)
#define YPPUSHVERS_ORIG ((unsigned long)1)
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/emips/include/bus.h
--- a/sys/arch/emips/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/emips/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.3 2019/09/23 16:17:55 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.4 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2001 The NetBSD Foundation, Inc.
@@ -291,7 +291,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
#undef __EMIPS_bus_space_write_multi
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/evbcf/include/bus_space.h
--- a/sys/arch/evbcf/include/bus_space.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/evbcf/include/bus_space.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_space.h,v 1.3 2019/09/23 16:17:55 skrll Exp $ */
+/* $NetBSD: bus_space.h,v 1.4 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -398,7 +398,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/hp300/include/bus.h
--- a/sys/arch/hp300/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/hp300/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.19 2019/09/23 16:17:55 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.20 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -484,7 +484,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/luna68k/include/bus.h
--- a/sys/arch/luna68k/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/luna68k/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.14 2019/09/23 16:17:56 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.15 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -349,7 +349,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/mac68k/include/bus.h
--- a/sys/arch/mac68k/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/mac68k/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.28 2019/09/23 16:17:56 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.29 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -538,9 +538,9 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#define bus_space_write_multi_stream_8(t, h, o, a, c) \
- !!! bus_space_write_multi_stream_8 unimplimented !!!
+ !!! bus_space_write_multi_stream_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/mvme68k/include/bus_space.h
--- a/sys/arch/mvme68k/include/bus_space.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/mvme68k/include/bus_space.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_space.h,v 1.15 2019/09/23 16:17:56 skrll Exp $ */
+/* $NetBSD: bus_space.h,v 1.16 2020/04/02 15:30:26 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -401,7 +401,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/news68k/include/bus.h
--- a/sys/arch/news68k/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/news68k/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.10 2019/09/23 16:17:57 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.11 2020/04/02 15:30:27 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -363,7 +363,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/newsmips/include/bus.h
--- a/sys/arch/newsmips/include/bus.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/newsmips/include/bus.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus.h,v 1.21 2019/09/23 16:17:57 skrll Exp $ */
+/* $NetBSD: bus.h,v 1.22 2020/04/02 15:30:27 msaitoh Exp $ */
/*
* Copyright (c) 1996, 1997, 1998, 2001 The NetBSD Foundation, Inc.
@@ -279,7 +279,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
#undef __NEWSMIPS_bus_space_write_multi
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/arch/next68k/include/bus_space.h
--- a/sys/arch/next68k/include/bus_space.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/arch/next68k/include/bus_space.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_space.h,v 1.17 2019/09/23 16:17:57 skrll Exp $ */
+/* $NetBSD: bus_space.h,v 1.18 2020/04/02 15:30:27 msaitoh Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -337,7 +337,7 @@
#if 0 /* Cause a link error for bus_space_write_8 */
#define bus_space_write_multi_8(t, h, o, a, c) \
- !!! bus_space_write_multi_8 unimplimented !!!
+ !!! bus_space_write_multi_8 unimplemented !!!
#endif
/*
diff -r bcc42943b0c0 -r 5f0b6ca215f8 sys/dev/pci/if_tireg.h
--- a/sys/dev/pci/if_tireg.h Thu Apr 02 14:11:59 2020 +0000
+++ b/sys/dev/pci/if_tireg.h Thu Apr 02 15:30:25 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tireg.h,v 1.28 2020/03/05 16:05:45 msaitoh Exp $ */
+/* $NetBSD: if_tireg.h,v 1.29 2020/04/02 15:30:27 msaitoh Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -288,7 +288,7 @@
*/
#define TI_OPMODE_BYTESWAP_BD 0x00000002
#define TI_OPMODE_WORDSWAP_BD 0x00000004
-#define TI_OPMODE_WARN_ENB 0x00000008 /* not yet implimented */
+#define TI_OPMODE_WARN_ENB 0x00000008 /* not yet implemented */
#define TI_OPMODE_BYTESWAP_DATA 0x00000010
#define TI_OPMODE_1_DMA_ACTIVE 0x00000040
#define TI_OPMODE_SBUS 0x00000100
@@ -298,7 +298,7 @@
#define TI_OPMODE_NO_EVENT_INTRS 0x00001000
#define TI_OPMODE_NO_TX_INTRS 0x00002000
#define TI_OPMODE_NO_RX_INTRS 0x00004000
-#define TI_OPMODE_FATAL_ENB 0x40000000 /* not yet implimented */
+#define TI_OPMODE_FATAL_ENB 0x40000000 /* not yet implemented */
/*
* DMA configuration thresholds.
Home |
Main Index |
Thread Index |
Old Index