diff options
Diffstat (limited to 'sys/dev/usb/usb_ethersubr.h')
-rw-r--r-- | sys/dev/usb/usb_ethersubr.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/usb/usb_ethersubr.h b/sys/dev/usb/usb_ethersubr.h index cd4acc1..f3d2e34 100644 --- a/sys/dev/usb/usb_ethersubr.h +++ b/sys/dev/usb/usb_ethersubr.h @@ -79,4 +79,13 @@ int usb_ether_tx_list_init (void *, struct ue_cdata *, void usb_ether_rx_list_free (struct ue_cdata *); void usb_ether_tx_list_free (struct ue_cdata *); +struct usb_taskqueue { + int dummy; +}; + +void usb_ether_task_init(device_t, int, struct usb_taskqueue *); +void usb_ether_task_enqueue(struct usb_taskqueue *, struct task *); +void usb_ether_task_drain(struct usb_taskqueue *, struct task *); +void usb_ether_task_destroy(struct usb_taskqueue *); + #endif /* _USB_ETHERSUBR_H_ */ |