Fix off-by-one. Sorry!

This commit is contained in:
Adrian Chadd 2013-11-11 08:55:38 +00:00
parent 8ea24d528f
commit 6abfec88c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257949

View File

@ -1768,7 +1768,7 @@ iwn4965_read_eeprom(struct iwn_softc *sc)
#ifdef IWN_DEBUG
/* Print samples. */
if (sc->sc_debug & IWN_DEBUG_ANY) {
for (i = 0; i < IWN_NBANDS; i++)
for (i = 0; i < IWN_NBANDS - 1; i++)
iwn4965_print_power_group(sc, i);
}
#endif