diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index dee9216a4ea..9d584d96082 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -77,6 +77,7 @@ #include #if defined(__FreeBSD__) +#include #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index c243035c164..d9aeabf644d 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -79,6 +79,7 @@ #include #if defined(__FreeBSD__) +#include #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index 241c0fa9af7..8b467f3f903 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -62,6 +62,7 @@ #include #if defined(__FreeBSD__) +#include #define delay(d) DELAY(d) #endif diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index 1266ec33114..f4ac846e971 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -63,6 +63,7 @@ #if defined(__FreeBSD__) #include "usb_if.h" +#include #define delay(d) DELAY(d) #endif