Module Name:    src
Committed By:   riastradh
Date:           Mon Oct  9 17:44:33 UTC 2023

Modified Files:
        src/sys/dev/usb: usbnet.c

Log Message:
usbnet(9): Fix typo in comment.

No functional change intended.

PR kern/57645

XXX pullup-10


To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 src/sys/dev/usb/usbnet.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/usb/usbnet.c
diff -u src/sys/dev/usb/usbnet.c:1.117 src/sys/dev/usb/usbnet.c:1.118
--- src/sys/dev/usb/usbnet.c:1.117	Mon Oct  9 17:43:01 2023
+++ src/sys/dev/usb/usbnet.c	Mon Oct  9 17:44:33 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbnet.c,v 1.117 2023/10/09 17:43:01 riastradh Exp $	*/
+/*	$NetBSD: usbnet.c,v 1.118 2023/10/09 17:44:33 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2019 Matthew R. Green
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usbnet.c,v 1.117 2023/10/09 17:43:01 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usbnet.c,v 1.118 2023/10/09 17:44:33 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -1030,7 +1030,7 @@ usbnet_ifflags_cb(struct ethercom *ec)
 
 	/*
 	 * Otherwise, cache the flags change so we can read the flags
-	 * under uno_mcastlock for multicast updates in SIOCADDMULTI or
+	 * under unp_mcastlock for multicast updates in SIOCADDMULTI or
 	 * SIOCDELMULTI without IFNET_LOCK.
 	 */
 	mutex_enter(&unp->unp_mcastlock);

Reply via email to