diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2009-05-08 20:54:50 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-11 15:24:05 -0400 |
commit | 19eddca67628e5fb722e4ebbbba8c307a884d0e8 (patch) | |
tree | e6a63a2c19ec1931bc3ff7bae45bbba819a70e5d /drivers/net | |
parent | f2c95b04aba3510323381fe49a0539c23da2e8f4 (diff) |
ath9k: Remove bogus break after return
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 5879c731e9e7..9e1db85e5651 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -1617,11 +1617,9 @@ static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type) | |||
1617 | switch (type) { | 1617 | switch (type) { |
1618 | case ATH9K_RESET_POWER_ON: | 1618 | case ATH9K_RESET_POWER_ON: |
1619 | return ath9k_hw_set_reset_power_on(ah); | 1619 | return ath9k_hw_set_reset_power_on(ah); |
1620 | break; | ||
1621 | case ATH9K_RESET_WARM: | 1620 | case ATH9K_RESET_WARM: |
1622 | case ATH9K_RESET_COLD: | 1621 | case ATH9K_RESET_COLD: |
1623 | return ath9k_hw_set_reset(ah, type); | 1622 | return ath9k_hw_set_reset(ah, type); |
1624 | break; | ||
1625 | default: | 1623 | default: |
1626 | return false; | 1624 | return false; |
1627 | } | 1625 | } |