diff options
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/usb.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index a6f636f..545d35c 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -679,6 +679,12 @@ usbd_add_event(int type, usbd_device_handle dev) splx(s); } +void +usb_schedsoftintr(struct usbd_bus *bus) +{ + bus->methods->soft_intr(bus); +} + #if defined(__NetBSD__) || defined(__OpenBSD__) int usb_activate(device_ptr_t self, enum devact act) |