Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Add missing inclusion of sys/bitops.h.



details:   https://anonhg.NetBSD.org/src/rev/593ac7364faf
branches:  trunk
changeset: 989067:593ac7364faf
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Oct 11 06:30:23 2021 +0000

description:
Add missing inclusion of sys/bitops.h.

diffstat:

 sys/dev/usb/uhub.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r a5449fb68ed9 -r 593ac7364faf sys/dev/usb/uhub.c
--- a/sys/dev/usb/uhub.c        Mon Oct 11 05:13:10 2021 +0000
+++ b/sys/dev/usb/uhub.c        Mon Oct 11 06:30:23 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhub.c,v 1.156 2021/10/11 00:16:08 jmcneill Exp $      */
+/*     $NetBSD: uhub.c,v 1.157 2021/10/11 06:30:23 msaitoh Exp $       */
 /*     $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $       */
 /*     $OpenBSD: uhub.c,v 1.86 2015/06/29 18:27:40 mpi Exp $ */
 
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.156 2021/10/11 00:16:08 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.157 2021/10/11 06:30:23 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -45,6 +45,7 @@
 
 #include <sys/param.h>
 
+#include <sys/bitops.h>
 #include <sys/bus.h>
 #include <sys/device.h>
 #include <sys/kernel.h>



Home | Main Index | Thread Index | Old Index