From bcbc1fcf66293d2ccf37cd6aa1b1121562b28133 Mon Sep 17 00:00:00 2001 From: andvar Date: Sun, 17 Apr 2022 21:24:52 +0000 Subject: fix various typos in comments. --- sys/dev/i2o/iopio.h | 4 ++-- sys/dev/qbus/ts.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/i2o/iopio.h b/sys/dev/i2o/iopio.h index 287643e41b8..1c6df2a7859 100644 --- a/sys/dev/i2o/iopio.h +++ b/sys/dev/i2o/iopio.h @@ -1,4 +1,4 @@ -/* $NetBSD: iopio.h,v 1.8 2017/10/28 06:27:32 riastradh Exp $ */ +/* $NetBSD: iopio.h,v 1.9 2022/04/17 21:24:53 andvar Exp $ */ /*- * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ #define IOP_MF_RESERVE 4 /* Frames to reserve for ctl ops */ #define IOP_MAX_XFER 64*1024 /* Maximum transfer size */ #define IOP_MAX_MSG_SIZE 160 /* Maximum message frame size */ -#define IOP_MIN_MSG_SIZE 128 /* Minumum size supported by IOP */ +#define IOP_MIN_MSG_SIZE 128 /* Minimum size supported by IOP */ struct iop_tidmap { u_short it_tid; diff --git a/sys/dev/qbus/ts.c b/sys/dev/qbus/ts.c index 44a50ba4553..558e75b3226 100644 --- a/sys/dev/qbus/ts.c +++ b/sys/dev/qbus/ts.c @@ -1,4 +1,4 @@ -/* $NetBSD: ts.c,v 1.35 2022/02/12 02:40:20 riastradh Exp $ */ +/* $NetBSD: ts.c,v 1.36 2022/04/17 21:24:53 andvar Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -66,7 +66,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ts.c,v 1.35 2022/02/12 02:40:20 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ts.c,v 1.36 2022/04/17 21:24:53 andvar Exp $"); #undef TSDEBUG @@ -368,7 +368,7 @@ tscommand(struct ts_softc *sc, dev_t dev, int cmd, int count) /* * Load the buffer. The b_count field gets used to hold the command - * count. the b_resid field gets used to hold the command mneumonic. + * count. the b_resid field gets used to hold the command mnemonic. * These 2 fields are "known" to be "safe" to use for this purpose. * (Most other drivers also use these fields in this way.) */ @@ -639,7 +639,7 @@ tsintr(void *arg) case TS_TC_NORM: /* * Normal termination -- The operation is completed - * witout incident. + * without incident. */ if (sc->sc_state == TS_FASTREPOS) { #ifdef TSDEBUG -- cgit