Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134181
b: refs/heads/master
c: bb2beca
h: refs/heads/master
i:
  134179: ae84277
v: v3
  • Loading branch information
Bob Copeland authored and John W. Linville committed Jan 29, 2009
1 parent b8239f8 commit 1a63bb0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 25 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 665af4fc8979734d8f73c9a6732be07e545ce4cc
refs/heads/master: bb2becac91f13e862d4601a8c5364bc758c35b8e
31 changes: 7 additions & 24 deletions trunk/drivers/net/wireless/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,9 @@ static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp)
}

/* Interrupt handling */
static int ath5k_init(struct ath5k_softc *sc, bool is_resume);
static int ath5k_init(struct ath5k_softc *sc);
static int ath5k_stop_locked(struct ath5k_softc *sc);
static int ath5k_stop_hw(struct ath5k_softc *sc, bool is_suspend);
static int ath5k_stop_hw(struct ath5k_softc *sc);
static irqreturn_t ath5k_intr(int irq, void *dev_id);
static void ath5k_tasklet_reset(unsigned long data);

Expand Down Expand Up @@ -653,8 +653,6 @@ ath5k_pci_suspend(struct pci_dev *pdev, pm_message_t state)

ath5k_led_off(sc);

ath5k_stop_hw(sc, true);

free_irq(pdev->irq, sc);
pci_save_state(pdev);
pci_disable_device(pdev);
Expand Down Expand Up @@ -689,14 +687,9 @@ ath5k_pci_resume(struct pci_dev *pdev)
goto err_no_irq;
}

err = ath5k_init(sc, true);
if (err)
goto err_irq;
ath5k_led_enable(sc);

return 0;
err_irq:
free_irq(pdev->irq, sc);

err_no_irq:
pci_disable_device(pdev);
return err;
Expand Down Expand Up @@ -2226,18 +2219,13 @@ ath5k_beacon_config(struct ath5k_softc *sc)
\********************/

static int
ath5k_init(struct ath5k_softc *sc, bool is_resume)
ath5k_init(struct ath5k_softc *sc)
{
struct ath5k_hw *ah = sc->ah;
int ret, i;

mutex_lock(&sc->lock);

if (is_resume && !test_bit(ATH_STAT_STARTED, sc->status))
goto out_ok;

__clear_bit(ATH_STAT_STARTED, sc->status);

ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode);

/*
Expand Down Expand Up @@ -2269,15 +2257,12 @@ ath5k_init(struct ath5k_softc *sc, bool is_resume)
for (i = 0; i < AR5K_KEYTABLE_SIZE; i++)
ath5k_hw_reset_key(ah, i);

__set_bit(ATH_STAT_STARTED, sc->status);

/* Set ack to be sent at low bit-rates */
ath5k_hw_set_ack_bitrate_high(ah, false);

mod_timer(&sc->calib_tim, round_jiffies(jiffies +
msecs_to_jiffies(ath5k_calinterval * 1000)));

out_ok:
ret = 0;
done:
mmiowb();
Expand Down Expand Up @@ -2332,7 +2317,7 @@ ath5k_stop_locked(struct ath5k_softc *sc)
* stop is preempted).
*/
static int
ath5k_stop_hw(struct ath5k_softc *sc, bool is_suspend)
ath5k_stop_hw(struct ath5k_softc *sc)
{
int ret;

Expand Down Expand Up @@ -2363,8 +2348,6 @@ ath5k_stop_hw(struct ath5k_softc *sc, bool is_suspend)
}
}
ath5k_txbuf_free(sc, sc->bbuf);
if (!is_suspend)
__clear_bit(ATH_STAT_STARTED, sc->status);

mmiowb();
mutex_unlock(&sc->lock);
Expand Down Expand Up @@ -2771,12 +2754,12 @@ ath5k_reset_wake(struct ath5k_softc *sc)

static int ath5k_start(struct ieee80211_hw *hw)
{
return ath5k_init(hw->priv, false);
return ath5k_init(hw->priv);
}

static void ath5k_stop(struct ieee80211_hw *hw)
{
ath5k_stop_hw(hw->priv, false);
ath5k_stop_hw(hw->priv);
}

static int ath5k_add_interface(struct ieee80211_hw *hw,
Expand Down

0 comments on commit 1a63bb0

Please sign in to comment.