svn commit: r260542 - head/sys/dev/usb/wlan

Kevin Lo kevlo at FreeBSD.org
Sat Jan 11 14:48:17 UTC 2014


Author: kevlo
Date: Sat Jan 11 14:48:16 2014
New Revision: 260542
URL: http://svnweb.freebsd.org/changeset/base/260542

Log:
  Fix a logic error when checking if Tx power entries are greater than 31.

Modified:
  head/sys/dev/usb/wlan/if_run.c

Modified: head/sys/dev/usb/wlan/if_run.c
==============================================================================
--- head/sys/dev/usb/wlan/if_run.c	Sat Jan 11 13:35:36 2014	(r260541)
+++ head/sys/dev/usb/wlan/if_run.c	Sat Jan 11 14:48:16 2014	(r260542)
@@ -1650,12 +1650,12 @@ run_rt3593_get_txpower(struct run_softc 
 	}
 	/* Fix broken Tx power entries. */
 	for (i = 0; i < 14; i++) {
-		if ((sc->txpow1[i] & 0x1f) > 31)
+		if (sc->txpow1[i] > 31)
 			sc->txpow1[i] = 5;
-		if ((sc->txpow2[i] & 0x1f) > 31)
+		if (sc->txpow2[i] > 31)
 			sc->txpow2[i] = 5;
 		if (sc->ntxchains == 3) {
-			if ((sc->txpow3[i] & 0x1f) > 31)
+			if (sc->txpow3[i] > 31)
 				sc->txpow3[i] = 5;
 		}
 	}


More information about the svn-src-all mailing list