diff options
author | imp <imp@FreeBSD.org> | 2003-11-28 05:28:29 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-11-28 05:28:29 +0000 |
commit | 50fbb1fb9fc90999e9ab376acde71e2c43db7e52 (patch) | |
tree | f3a75060791c0ddccff507c8cb62ab6ffc682113 /sys/dev/ath/if_ath_pci.c | |
parent | 9f0b8cac1eb7f7f814567ba61355226394431462 (diff) | |
download | FreeBSD-src-50fbb1fb9fc90999e9ab376acde71e2c43db7e52.zip FreeBSD-src-50fbb1fb9fc90999e9ab376acde71e2c43db7e52.tar.gz |
Sometimes cardbus attachments don't attach, so while we track down
this problem put these lines back in. While they should be
unnecessary, they appear to be sometimes necessary.
Reviewed in concept: dfr
Approved by: re (scottl@)
Diffstat (limited to 'sys/dev/ath/if_ath_pci.c')
-rw-r--r-- | sys/dev/ath/if_ath_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath_pci.c b/sys/dev/ath/if_ath_pci.c index 7f8e9cf..40ec01b 100644 --- a/sys/dev/ath/if_ath_pci.c +++ b/sys/dev/ath/if_ath_pci.c @@ -296,6 +296,7 @@ static driver_t ath_pci_driver = { }; static devclass_t ath_devclass; DRIVER_MODULE(if_ath, pci, ath_pci_driver, ath_devclass, 0, 0); +DRIVER_MODULE(if_ath, cardbus, ath_pci_driver, ath_devclass, 0, 0); MODULE_VERSION(if_ath, 1); MODULE_DEPEND(if_ath, ath_hal, 1, 1, 1); /* Atheros HAL */ MODULE_DEPEND(if_ath, wlan, 1, 1, 1); /* 802.11 media layer */ |