~ubuntu-branches/ubuntu/vivid/linux-backports-modules-3.2.0/vivid

« back to all changes in this revision

Viewing changes to updates/cw-3.3/drivers/net/wireless/iwlegacy/3945.c

  • Committer: Package Import Robot
  • Author(s): Leann Ogasawara
  • Date: 2012-03-29 09:17:55 UTC
  • Revision ID: package-import@ubuntu.com-20120329091755-1xmgit6xf3ch02r5
Tags: 3.2.0-21.4
* Update to compat-wireless-3.3-2-n 
* Bump ABI for Precise 3.2.0-21.34 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1870
1870
        struct il_priv *il = container_of(work, struct il_priv,
1871
1871
                                          _3945.thermal_periodic.work);
1872
1872
 
1873
 
        if (test_bit(S_EXIT_PENDING, &il->status))
1874
 
                return;
1875
 
 
1876
1873
        mutex_lock(&il->mutex);
 
1874
        if (test_bit(S_EXIT_PENDING, &il->status) || il->txq == NULL)
 
1875
                goto out;
 
1876
 
1877
1877
        il3945_reg_txpower_periodic(il);
 
1878
out:
1878
1879
        mutex_unlock(&il->mutex);
1879
1880
}
1880
1881