ath(4): Fix typo in debugging code

PR:		229548
Submitted by:	David Binderman <dcb314 AT hotmail.com>
This commit is contained in:
Conrad Meyer 2018-07-05 21:38:54 +00:00
parent 417d105fae
commit 3655135d3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336016

View file

@ -2151,7 +2151,7 @@ ath_intr(void *arg)
if (ah->ah_syncstate != 0) {
int i;
for (i = 0; i < 32; i++)
if (ah->ah_syncstate & (i << i))
if (ah->ah_syncstate & (1 << i))
sc->sc_intr_stats.sync_intr[i]++;
}