summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-05-31 11:22:33 +0000
committerandvar <andvar@NetBSD.org>2022-05-31 11:22:33 +0000
commit9c38e8789aaebcc98d933d6fd8bfb4ce0ddc7c8e (patch)
tree736ef00bf8df78042bfeda138beea667624825eb /sys/dev/ic
parentd8e361d9940a3e372393c3761d1bab2424d75a6d (diff)
s/disbale/disable/ and s/enbale/enable/ in comments. also one more typo fix.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/dm9000reg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/dm9000reg.h b/sys/dev/ic/dm9000reg.h
index 977a8b154d9..02462bc560b 100644
--- a/sys/dev/ic/dm9000reg.h
+++ b/sys/dev/ic/dm9000reg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dm9000reg.h,v 1.8 2022/05/31 08:43:15 andvar Exp $ */
+/* $NetBSD: dm9000reg.h,v 1.9 2022/05/31 11:22:33 andvar Exp $ */
/*
* Copyright (c) 2009 Paul Fleischer
@@ -68,9 +68,9 @@
#define DM9000_TCR 0x02 /* Tx control */
#define DM9000_TCR_TXREQ (1<<0) /* request to start Tx, self clear */
#define DM9000_TCR_CRC_DIS1 (1<<1) /* disable PAD op on Tx1 */
-#define DM9000_TCR_PAD_DIS1 (1<<2) /* disbale CRC append on Tx1 */
+#define DM9000_TCR_PAD_DIS1 (1<<2) /* disable CRC append on Tx1 */
#define DM9000_TCR_CRC_DIS2 (1<<3) /* disable PAD op on Tx2 */
-#define DM9000_TCR_PAD_DIS2 (1<<4) /* disbale CRC append on Tx2 */
+#define DM9000_TCR_PAD_DIS2 (1<<4) /* disable CRC append on Tx2 */
#define DM9000_TCR_EXCECM (1<<5) /* allow infinite colli. retries */
#define DM9000_TCR_TJDIS (1<<6) /* disable xmit jabber, otherwise on */
#define DM9000_TSR1 0x03 /* transmit completion status 1 */