Changeset 2233
- Timestamp:
- 03/27/07 19:47:37 (5 years ago)
- Files:
-
- branches/madwifi-old-openhal/ath/if_ath.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/madwifi-old-openhal/ath/if_ath.c
r2228 r2233 353 353 354 354 /* 355 * Attach the hal and verify ABI compatibility by checking 356 * the hal's ABI signature against the one the driver was 357 * compiled with. A mismatch indicates the driver was 358 * built with an ah.h that does not correspond to the hal 359 * module loaded in the kernel. 355 * Attach the hal 360 356 */ 361 357 ah = _ath_hal_attach(devid, sc, 0, sc->sc_iobase, &status); … … 2294 2290 u_int32_t rfilt; 2295 2291 2296 rfilt = (ath_hal_getrxfilter(ah) & AR5K_RX_FILTER_PHYERR )2292 rfilt = (ath_hal_getrxfilter(ah) & AR5K_RX_FILTER_PHYERROR) 2297 2293 | AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST | AR5K_RX_FILTER_MCAST | AR5K_RX_FILTER_PHYRADAR; 2298 2294 if (ic->ic_opmode != IEEE80211_M_STA && … … 3777 3773 * we'll explicity drop them after capture. 3778 3774 */ 3779 if (sc->sc_rxfilter & AR5K_RX_FILTER_PHYERR )3775 if (sc->sc_rxfilter & AR5K_RX_FILTER_PHYERROR) 3780 3776 goto rx_accept; 3781 3777
