~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal

« back to all changes in this revision

Viewing changes to drivers/net/wireless/iwlegacy/iwl-3945.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich, Luke Yelavich, Upstream Kernel Changes
  • Date: 2012-03-30 09:03:19 UTC
  • Revision ID: package-import@ubuntu.com-20120330090319-5445yb1865swhoiv
Tags: 3.2.0-21.29
[ Luke Yelavich ]

* [Config] Update configs after rebase against Ubuntu-3.2.0-21.34

[ Upstream Kernel Changes ]

* Low-latency: Rebase against Ubuntu-3.2.0-21.34

Show diffs side-by-side

added added

removed removed

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