Module Name:    src
Committed By:   riastradh
Date:           Mon Feb 14 09:22:30 UTC 2022

Modified Files:
        src/sys/dev/usb: usbdi.h

Log Message:
usbdi(9): Fix missing includes in usbdi.h.


To generate a diff of this commit:
cvs rdiff -u -r1.103 -r1.104 src/sys/dev/usb/usbdi.h

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/usbdi.h
diff -u src/sys/dev/usb/usbdi.h:1.103 src/sys/dev/usb/usbdi.h:1.104
--- src/sys/dev/usb/usbdi.h:1.103	Sun Jun 13 14:48:10 2021
+++ src/sys/dev/usb/usbdi.h	Mon Feb 14 09:22:30 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbdi.h,v 1.103 2021/06/13 14:48:10 riastradh Exp $	*/
+/*	$NetBSD: usbdi.h,v 1.104 2022/02/14 09:22:30 riastradh Exp $	*/
 /*	$FreeBSD: src/sys/dev/usb/usbdi.h,v 1.18 1999/11/17 22:33:49 n_hibma Exp $	*/
 
 /*
@@ -34,6 +34,10 @@
 #ifndef _USBDI_H_
 #define _USBDI_H_
 
+#include <sys/types.h>
+
+#include <dev/usb/usb.h>
+
 struct usbd_bus;
 struct usbd_device;
 struct usbd_interface;

Reply via email to