summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2017-02-16 13:18:00 +0200
committerGordon Ross <gwr@nexenta.com>2017-06-11 12:33:52 -0400
commit88811dae72594322206feacfdd588136aca40d65 (patch)
tree41bc06b7b017d43420a61f1565d1fb2d0db4672c /usr
parent15a0c3a7ba78a992f7bad7c25b74c4a6b91b7ff4 (diff)
downloadillumos-joyent-88811dae72594322206feacfdd588136aca40d65.tar.gz
8287 arn: misleading-indentation
Reviewed by: Andrew Stormont <andyjstormont@gmail.com> Reviewed by: Yuri Pankov <yuripv@gmx.com> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr')
-rw-r--r--usr/src/uts/common/io/arn/arn_rc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/uts/common/io/arn/arn_rc.c b/usr/src/uts/common/io/arn/arn_rc.c
index e6c6170ee7..d70348d074 100644
--- a/usr/src/uts/common/io/arn/arn_rc.c
+++ b/usr/src/uts/common/io/arn/arn_rc.c
@@ -521,12 +521,12 @@ arn_rc_valid_phyrate(uint32_t phy, uint32_t capflag, int ignore_cw)
return (0);
if (WLAN_RC_PHY_SGI(phy) && !(capflag & WLAN_RC_SGI_FLAG))
return (0);
- if (!ignore_cw && WLAN_RC_PHY_HT(phy))
+ if (!ignore_cw && WLAN_RC_PHY_HT(phy)) {
if (WLAN_RC_PHY_40(phy) && !(capflag & WLAN_RC_40_FLAG))
return (0);
if (!WLAN_RC_PHY_40(phy) && (capflag & WLAN_RC_40_FLAG))
return (0);
-
+ }
return (1);
}
@@ -947,7 +947,7 @@ arn_rc_update_per(struct arn_softc *sc,
struct ath_rate_priv *ath_rc_priv,
struct ath_tx_info_priv *tx_info_priv,
int tx_rate, int xretries, int retries,
- uint32_t now_msec)
+ uint32_t now_msec)
{
boolean_t state_change = B_FALSE;
int count;