Changeset 2233

Show
Ignore:
Timestamp:
03/27/07 19:47:37 (5 years ago)
Author:
mickflemm
Message:

* I left this out from the previous commit, should sleep more

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/madwifi-old-openhal/ath/if_ath.c

    r2228 r2233  
    353353         
    354354        /* 
    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 
    360356         */ 
    361357        ah = _ath_hal_attach(devid, sc, 0, sc->sc_iobase, &status); 
     
    22942290        u_int32_t rfilt; 
    22952291 
    2296         rfilt = (ath_hal_getrxfilter(ah) & AR5K_RX_FILTER_PHYERR
     2292        rfilt = (ath_hal_getrxfilter(ah) & AR5K_RX_FILTER_PHYERROR
    22972293              | AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST | AR5K_RX_FILTER_MCAST | AR5K_RX_FILTER_PHYRADAR; 
    22982294        if (ic->ic_opmode != IEEE80211_M_STA &&  
     
    37773773                         * we'll explicity drop them after capture. 
    37783774                         */ 
    3779                         if (sc->sc_rxfilter & AR5K_RX_FILTER_PHYERR
     3775                        if (sc->sc_rxfilter & AR5K_RX_FILTER_PHYERROR
    37803776                                goto rx_accept; 
    37813777