summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2022-07-04 15:09:12 +0000
committerskrll <skrll@NetBSD.org>2022-07-04 15:09:12 +0000
commitbe354edb0ee14d342bf4544c4edcc4a0a9936c76 (patch)
treee288863df344454094110e4729d1e06c6479ff0d /sys/dev
parent330a6f8f222d6aed6b3abebc23df3d68bd31d3ed (diff)
Be less tautological and more explanatory in a comment.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_wm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/if_wm.c b/sys/dev/pci/if_wm.c
index 9167d1926c5..d519a40400c 100644
--- a/sys/dev/pci/if_wm.c
+++ b/sys/dev/pci/if_wm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_wm.c,v 1.735 2022/07/02 06:10:29 skrll Exp $ */
+/* $NetBSD: if_wm.c,v 1.736 2022/07/04 15:09:12 skrll Exp $ */
/*
* Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc.
@@ -82,7 +82,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.735 2022/07/02 06:10:29 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.736 2022/07/04 15:09:12 skrll Exp $");
#ifdef _KERNEL_OPT
#include "opt_net_mpsafe.h"
@@ -3020,7 +3020,8 @@ alloc_retry:
} else {
ifp->if_start = wm_start;
/*
- * wm_transmit() has the same disadvantage as wm_transmit().
+ * wm_transmit() has the same disadvantages as wm_nq_transmit()
+ * described above.
*/
if (wm_is_using_multiqueue(sc))
ifp->if_transmit = wm_transmit;