diff options
-rw-r--r-- | sys/boot/kshim/bsd_global.h | 1 | ||||
-rw-r--r-- | sys/boot/kshim/bsd_kernel.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/boot/kshim/bsd_global.h b/sys/boot/kshim/bsd_global.h index 4f6d88b..63bba75 100644 --- a/sys/boot/kshim/bsd_global.h +++ b/sys/boot/kshim/bsd_global.h @@ -55,7 +55,6 @@ #include <dev/usb/usb_pf.h> #include <dev/usb/usb_request.h> #include <dev/usb/usb_util.h> -#include <dev/usb/usb_compat_linux.h> #include <dev/usb/usbhid.h> #include <dev/usb/usb_ioctl.h> #include <dev/usb/usb_generic.h> diff --git a/sys/boot/kshim/bsd_kernel.h b/sys/boot/kshim/bsd_kernel.h index 72e0d23..9d16f1b 100644 --- a/sys/boot/kshim/bsd_kernel.h +++ b/sys/boot/kshim/bsd_kernel.h @@ -579,4 +579,7 @@ extern int (*ofw_bus_is_compatible_cb)(device_t dev, char *name); #define strlcpy(d,s,n) snprintf((d),(n),"%s",(s)) #endif +/* Should be defined in user application since it is machine-dependent */ +extern int delay(unsigned int); + #endif /* _BSD_KERNEL_H_ */ |