From 88811dae72594322206feacfdd588136aca40d65 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Thu, 16 Feb 2017 13:18:00 +0200 Subject: [PATCH] 8287 arn: misleading-indentation Reviewed by: Andrew Stormont Reviewed by: Yuri Pankov Reviewed by: Robert Mustacchi Approved by: Gordon Ross --- usr/src/uts/common/io/arn/arn_rc.c | 6 +++--- 1 file 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; -- 2.11.4.GIT