Module Name: src
Committed By: msaitoh
Date: Thu Nov 2 02:32:41 UTC 2023
Modified Files:
src/sys/dev/ic: dwc_eqos.c
Log Message:
eqos(4): Fix typo in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/dwc_eqos.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/dwc_eqos.c
diff -u src/sys/dev/ic/dwc_eqos.c:1.28 src/sys/dev/ic/dwc_eqos.c:1.29
--- src/sys/dev/ic/dwc_eqos.c:1.28 Sun Oct 29 14:55:16 2023
+++ src/sys/dev/ic/dwc_eqos.c Thu Nov 2 02:32:41 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: dwc_eqos.c,v 1.28 2023/10/29 14:55:16 msaitoh Exp $ */
+/* $NetBSD: dwc_eqos.c,v 1.29 2023/11/02 02:32:41 msaitoh Exp $ */
/*-
* Copyright (c) 2022 Jared McNeill <[email protected]>
@@ -38,7 +38,7 @@
#include "opt_net_mpsafe.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwc_eqos.c,v 1.28 2023/10/29 14:55:16 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwc_eqos.c,v 1.29 2023/11/02 02:32:41 msaitoh Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -75,7 +75,7 @@ CTASSERT(MCLBYTES >= EQOS_RXDMA_SIZE);
#define EDEB_INTR (1U << 1)
#define EDEB_RXRING (1U << 2)
#define EDEB_TXRING (1U << 3)
-unsigned int eqos_debug; /* Default vaule */
+unsigned int eqos_debug; /* Default value */
#define DPRINTF(FLAG, FORMAT, ...) \
if (sc->sc_debug & FLAG) \
device_printf(sc->sc_dev, "%s: " FORMAT, \