diff options
author | Bob Copeland <me@bobcopeland.com> | 2016-02-28 20:07:55 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-03-11 07:00:00 -0500 |
commit | 0eb69ef355c3b77f8ce8f54b61759909ad3abcf8 (patch) | |
tree | 2948f7f6a86c4e4006bc7aad8fb8947009825ce2 /drivers/net/wireless/ath/ath5k | |
parent | 1f64252d0b731d55f262a80f8eef914240334d17 (diff) |
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 <me@bobcopeland.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/phy.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath5k/reset.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c index 0fce1c76638e..98ee85456321 100644 --- a/drivers/net/wireless/ath/ath5k/phy.c +++ b/drivers/net/wireless/ath/ath5k/phy.c | |||
@@ -1446,7 +1446,7 @@ ath5k_hw_channel(struct ath5k_hw *ah, | |||
1446 | "channel frequency (%u MHz) out of supported " | 1446 | "channel frequency (%u MHz) out of supported " |
1447 | "band range\n", | 1447 | "band range\n", |
1448 | channel->center_freq); | 1448 | channel->center_freq); |
1449 | return -EINVAL; | 1449 | return -EINVAL; |
1450 | } | 1450 | } |
1451 | 1451 | ||
1452 | /* | 1452 | /* |
diff --git a/drivers/net/wireless/ath/ath5k/reset.c b/drivers/net/wireless/ath/ath5k/reset.c index 99e62f99a182..4b1c87fa15ac 100644 --- a/drivers/net/wireless/ath/ath5k/reset.c +++ b/drivers/net/wireless/ath/ath5k/reset.c | |||
@@ -634,7 +634,7 @@ ath5k_hw_on_hold(struct ath5k_hw *ah) | |||
634 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | | 634 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
635 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | | 635 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | |
636 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); | 636 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); |
637 | usleep_range(2000, 2500); | 637 | usleep_range(2000, 2500); |
638 | } else { | 638 | } else { |
639 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | | 639 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
640 | AR5K_RESET_CTL_BASEBAND | bus_flags); | 640 | AR5K_RESET_CTL_BASEBAND | bus_flags); |
@@ -699,7 +699,7 @@ ath5k_hw_nic_wakeup(struct ath5k_hw *ah, struct ieee80211_channel *channel) | |||
699 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | | 699 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
700 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | | 700 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | |
701 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); | 701 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); |
702 | usleep_range(2000, 2500); | 702 | usleep_range(2000, 2500); |
703 | } else { | 703 | } else { |
704 | if (ath5k_get_bus_type(ah) == ATH_AHB) | 704 | if (ath5k_get_bus_type(ah) == ATH_AHB) |
705 | ret = ath5k_hw_wisoc_reset(ah, AR5K_RESET_CTL_PCU | | 705 | ret = ath5k_hw_wisoc_reset(ah, AR5K_RESET_CTL_PCU | |