Skip to content

Commit 0eb69ef

Browse files
bcopelandkvalo
authored andcommitted
ath5k: fix incorrect indentation
smatch said: drivers/net/wireless/ath/ath5k/phy.c:1449 ath5k_hw_channel() warn: inconsistent indenting drivers/net/wireless/ath/ath5k/reset.c:637 ath5k_hw_on_hold() warn: inconsistent indenting drivers/net/wireless/ath/ath5k/reset.c:702 ath5k_hw_nic_wakeup() warn: inconsistent indenting All of these lines were indented a tabstop too far. Signed-off-by: Bob Copeland <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
1 parent 1f64252 commit 0eb69ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

drivers/net/wireless/ath/ath5k/phy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ ath5k_hw_channel(struct ath5k_hw *ah,
14461446
"channel frequency (%u MHz) out of supported "
14471447
"band range\n",
14481448
channel->center_freq);
1449-
return -EINVAL;
1449+
return -EINVAL;
14501450
}
14511451

14521452
/*

drivers/net/wireless/ath/ath5k/reset.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ ath5k_hw_on_hold(struct ath5k_hw *ah)
634634
ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
635635
AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
636636
AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
637-
usleep_range(2000, 2500);
637+
usleep_range(2000, 2500);
638638
} else {
639639
ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
640640
AR5K_RESET_CTL_BASEBAND | bus_flags);
@@ -699,7 +699,7 @@ ath5k_hw_nic_wakeup(struct ath5k_hw *ah, struct ieee80211_channel *channel)
699699
ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
700700
AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
701701
AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
702-
usleep_range(2000, 2500);
702+
usleep_range(2000, 2500);
703703
} else {
704704
if (ath5k_get_bus_type(ah) == ATH_AHB)
705705
ret = ath5k_hw_wisoc_reset(ah, AR5K_RESET_CTL_PCU |

0 commit comments

Comments
 (0)