diff options
author | peter <peter@FreeBSD.org> | 2000-04-29 13:41:57 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-04-29 13:41:57 +0000 |
commit | 3f3fb18f8e37c634bd574e698ae854e4af38da5e (patch) | |
tree | 36fddc23448d2d608ccb140067d3ffa9a9c40d43 /sys/dev/tx | |
parent | e47f330f648743d5bf8bd4c10e057327828776af (diff) | |
download | FreeBSD-src-3f3fb18f8e37c634bd574e698ae854e4af38da5e.zip FreeBSD-src-3f3fb18f8e37c634bd574e698ae854e4af38da5e.tar.gz |
Depend on miibus.
Note that if_aue doesn't strictly depend on usb because it uses the
method interface for calls rather than using internal symbols, and
because it's a child driver of usb and therefore will not try and do
anything unless the parent usb code is loaded at some point. if_aue does
strictly depend on miibus as it will fail to link if it is missing.
Diffstat (limited to 'sys/dev/tx')
-rw-r--r-- | sys/dev/tx/if_tx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index fa03716..0f37ca3 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/if_tx.c @@ -130,6 +130,8 @@ #include <dev/pci/if_txvar.h> #endif +MODULE_DEPEND(tx, miibus, 1, 1, 1); + #if defined(__FreeBSD__) #define EPIC_INTR_RET_TYPE void #else /* __OpenBSD__ */ |