Module Name: src Committed By: riastradh Date: Thu Mar 3 06:09:03 UTC 2022
Modified Files: src/sys/dev/usb: xhcivar.h Log Message: xhci(4): Add missing includes to xhcivar.h. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/dev/usb/xhcivar.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/xhcivar.h diff -u src/sys/dev/usb/xhcivar.h:1.19 src/sys/dev/usb/xhcivar.h:1.20 --- src/sys/dev/usb/xhcivar.h:1.19 Sun May 23 21:12:28 2021 +++ src/sys/dev/usb/xhcivar.h Thu Mar 3 06:09:03 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: xhcivar.h,v 1.19 2021/05/23 21:12:28 riastradh Exp $ */ +/* $NetBSD: xhcivar.h,v 1.20 2022/03/03 06:09:03 riastradh Exp $ */ /* * Copyright (c) 2013 Jonathan A. Kollasch @@ -29,8 +29,17 @@ #ifndef _DEV_USB_XHCIVAR_H_ #define _DEV_USB_XHCIVAR_H_ +#include <sys/types.h> + +#include <sys/condvar.h> +#include <sys/device.h> +#include <sys/mutex.h> +#include <sys/pmf.h> #include <sys/pool.h> +#include <dev/usb/usbdi.h> +#include <dev/usb/usbdivar.h> + #define XHCI_MAX_DCI 31 struct xhci_soft_trb {