Commit 6badaaf7 authored by Joe Perches's avatar Joe Perches Committed by John W. Linville

drivers/net/wireless/ath/ath9k: Remove unnecessary semicolons

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 7ac48726
...@@ -2516,10 +2516,8 @@ static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah, ...@@ -2516,10 +2516,8 @@ static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah,
targetPowerCck.tPow2x[1]; targetPowerCck.tPow2x[1];
ratesArray[rate5_5s] = ratesArray[rate5_5l] = ratesArray[rate5_5s] = ratesArray[rate5_5l] =
targetPowerCck.tPow2x[2]; targetPowerCck.tPow2x[2];
;
ratesArray[rate11s] = ratesArray[rate11l] = ratesArray[rate11s] = ratesArray[rate11l] =
targetPowerCck.tPow2x[3]; targetPowerCck.tPow2x[3];
;
} }
if (IS_CHAN_HT40(chan)) { if (IS_CHAN_HT40(chan)) {
for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) { for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
......
...@@ -2345,7 +2345,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, ...@@ -2345,7 +2345,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
ath9k_hw_init_bb(ah, chan); ath9k_hw_init_bb(ah, chan);
if (!ath9k_hw_init_cal(ah, chan)) if (!ath9k_hw_init_cal(ah, chan))
return -EIO;; return -EIO;
rx_chainmask = ah->rxchainmask; rx_chainmask = ah->rxchainmask;
if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) { if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment