diff options
| author | Andrew Thompson <thompsa@FreeBSD.org> | 2009-02-13 02:48:32 +0000 |
|---|---|---|
| committer | Andrew Thompson <thompsa@FreeBSD.org> | 2009-02-13 02:48:32 +0000 |
| commit | 8385da51b724308e09d889432f037bb0a8c5bf19 (patch) | |
| tree | 2ae8c2192f8600eb8f1bb410523d1bca74296c65 /sys/dev/usb2 | |
| parent | 53414a48f88d2e3626463dda1589ed19a1e5f246 (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb2')
| -rw-r--r-- | sys/dev/usb2/ethernet/usb2_ethernet.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/usb2/ethernet/usb2_ethernet.c b/sys/dev/usb2/ethernet/usb2_ethernet.c index 7bf46d6c9193..a01f94240b24 100644 --- a/sys/dev/usb2/ethernet/usb2_ethernet.c +++ b/sys/dev/usb2/ethernet/usb2_ethernet.c @@ -43,6 +43,9 @@ SYSCTL_NODE(_net, OID_AUTO, ue, CTLFLAG_RD, 0, "USB Ethernet parameters"); #define UE_UNLOCK(_ue) mtx_unlock((_ue)->ue_mtx) #define UE_LOCK_ASSERT(_ue, t) mtx_assert((_ue)->ue_mtx, t) +MODULE_DEPEND(usb2_ethernet, usb2_core, 1, 1, 1); +MODULE_DEPEND(usb2_ethernet, miibus, 1, 1, 1); + static struct unrhdr *ueunit; static usb2_proc_callback_t ue_attach_post_task; @@ -582,4 +585,3 @@ usb2_ether_rxflush(struct usb2_ether *ue) DECLARE_MODULE(usb2_ethernet, usb2_ether_mod, SI_SUB_PSEUDO, SI_ORDER_ANY); MODULE_VERSION(usb2_ethernet, 1); -MODULE_DEPEND(usb2_ethernet, usb2_core, 1, 1, 1); |
