diff options
author | ff224033 <none@none> | 2008-08-02 00:11:23 -0700 |
---|---|---|
committer | ff224033 <none@none> | 2008-08-02 00:11:23 -0700 |
commit | 5d2225f6bb395dbd38b87e1f0af3ce4afbca42f3 (patch) | |
tree | 169e0d149f682314754921be8b49e006639dd221 /usr/src | |
parent | b6c10d8075f5dee6b99f706ed08f3b012a8dcbdd (diff) | |
download | illumos-joyent-5d2225f6bb395dbd38b87e1f0af3ce4afbca42f3.tar.gz |
6732019 ath driver needs lint clean-up (fix cstyle)
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/io/ath/ath_aux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/ath/ath_aux.c b/usr/src/uts/common/io/ath/ath_aux.c index e2ac721bd5..a1d13e2c90 100644 --- a/usr/src/uts/common/io/ath/ath_aux.c +++ b/usr/src/uts/common/io/ath/ath_aux.c @@ -230,7 +230,8 @@ ath_setcurmode(ath_t *asc, enum ieee80211_phymode mode) ASSERT(rt != NULL); for (i = 0; i < rt->rateCount; i++) - asc->asc_rixmap[rt->info[i].dot11Rate & IEEE80211_RATE_VAL] = (uint8_t)i; + asc->asc_rixmap[rt->info[i].dot11Rate & IEEE80211_RATE_VAL] = + (uint8_t)i; asc->asc_currates = rt; asc->asc_curmode = mode; |