Changeset 19028


Ignore:
Timestamp:
04/14/12 01:51:41 (14 months ago)
Author:
BrainSlayer
Message:

3.3.2

Location:
src/linux/universal/linux-3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/linux/universal/linux-3.3/Makefile

    r19019 r19028  
    22PATCHLEVEL = 3 
    33SUBLEVEL = 2 
    4 EXTRAVERSION = -rc1 
     4EXTRAVERSION = 
    55NAME = Saber-toothed Squirrel 
    66 
  • src/linux/universal/linux-3.3/drivers/net/wireless/ath/ath9k/main.c

    r18879 r19028  
    119119                goto unlock; 
    120120 
    121         if (sc->ps_flags & PS_WAIT_FOR_TX_ACK) 
    122                 goto unlock; 
    123  
    124         if (sc->ps_idle) 
     121        if (sc->ps_idle && (sc->ps_flags & PS_WAIT_FOR_TX_ACK)) 
    125122                mode = ATH9K_PM_FULL_SLEEP; 
    126123        else if (sc->ps_enabled && 
    127124                 !(sc->ps_flags & (PS_WAIT_FOR_BEACON | 
    128125                              PS_WAIT_FOR_CAB | 
    129                               PS_WAIT_FOR_PSPOLL_DATA))) 
     126                              PS_WAIT_FOR_PSPOLL_DATA | 
     127                              PS_WAIT_FOR_TX_ACK))) 
    130128                mode = ATH9K_PM_NETWORK_SLEEP; 
    131129        else 
Note: See TracChangeset for help on using the changeset viewer.