Changeset 3629

Show
Ignore:
Timestamp:
05/14/08 21:19:30 (5 months ago)
Author:
mentor
Message:

Downgrade Int. Mit. out of synchronisation message to a warning as we know it happens.

Also, remove extraneous message severity indicators.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • madwifi/trunk/ath/if_ath.c

    r3628 r3629  
    16951695                ath_hal_getintmit(sc->sc_ah, &intmit_on); 
    16961696                if (intmit_on != sc->sc_useintmit) { 
    1697                         EPRINTF(sc, "ERROR: INTMIT HAL capability out of sync.  Got %d!\n", intmit); 
     1697                        WPRINTF(sc, "INTMIT HAL capability out of sync.  Got %d!\n", intmit); 
    16981698                        ath_hal_setintmit(sc->sc_ah, (sc->sc_hasintmit && sc->sc_useintmit)); 
    16991699                } 
     
    17011701#ifdef ATH_CAP_TPC 
    17021702        if (sc->sc_hastpc && (hal_tpc != ath_hal_gettpc(sc->sc_ah))) { 
    1703                 EPRINTF(sc, "ERROR: TPC HAL capability out of sync.  Got %d!\n", ath_hal_gettpc(sc->sc_ah)); 
     1703                EPRINTF(sc, "TPC HAL capability out of sync.  Got %d!\n", ath_hal_gettpc(sc->sc_ah)); 
    17041704                ath_hal_settpc(sc->sc_ah, hal_tpc); 
    17051705        }