summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-05-17 05:05:20 +0000
committerandvar <andvar@NetBSD.org>2022-05-17 05:05:20 +0000
commit48a753a1625d655486ea4586d64999238f46fc08 (patch)
tree3229693894c334923c9d55ee048cdeab23ff5115 /sys/dev
parentc8a5847c55b8fb499cdf93434859ec5a9bc72244 (diff)
fix few typos in comments.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/spi/spi.c6
-rw-r--r--sys/dev/usb/udl.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/spi/spi.c b/sys/dev/spi/spi.c
index edb87948049..36f8805cb5c 100644
--- a/sys/dev/spi/spi.c
+++ b/sys/dev/spi/spi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: spi.c,v 1.25 2022/05/08 06:38:58 skrll Exp $ */
+/* $NetBSD: spi.c,v 1.26 2022/05/17 05:05:20 andvar Exp $ */
/*-
* Copyright (c) 2006 Urbana-Champaign Independent Media Center.
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: spi.c,v 1.25 2022/05/08 06:38:58 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: spi.c,v 1.26 2022/05/17 05:05:20 andvar Exp $");
#include "locators.h"
@@ -615,7 +615,7 @@ spi_done(struct spi_transfer *st, int err)
*
* spi_send_recv - sends data to the bus, and then receives. Note that this is
* done synchronously, i.e. send a command and get the response. This is
- * not full duplex. If you wnat full duplex, you can't use these convenience
+ * not full duplex. If you want full duplex, you can't use these convenience
* wrappers.
*/
int
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c
index 1b09b6f77aa..119517e22b8 100644
--- a/sys/dev/usb/udl.c
+++ b/sys/dev/usb/udl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: udl.c,v 1.27 2021/08/07 16:19:17 thorpej Exp $ */
+/* $NetBSD: udl.c,v 1.28 2022/05/17 05:05:20 andvar Exp $ */
/*-
* Copyright (c) 2009 FUKAUMI Naoki.
@@ -53,7 +53,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.27 2021/08/07 16:19:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.28 2022/05/17 05:05:20 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@@ -1020,7 +1020,7 @@ udl_putchar(void *cookie, int row, int col, u_int uc, long attr)
if (uc == ' ') {
/*
- * Writting a block for the space character instead rendering
+ * Writing a block for the space character instead rendering
* it from font bits is more slim.
*/
udl_fill_rect(sc, rgb16[0], x, y, width, height);