]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[ath5k] Add missing AR5K_EEPROM_READ in ath5k_eeprom_read_turbo_modes
authorBruce Rogers <brogers@suse.com>
Tue, 16 Feb 2021 18:29:41 +0000 (11:29 -0700)
committerMichael Brown <mcb30@ipxe.org>
Tue, 16 Feb 2021 23:35:24 +0000 (23:35 +0000)
The GCC11 compiler pointed out something that apparently no previous
compiler noticed: in ath5k_eeprom_pread_turbo_modes, local variable
val is used uninitialized. From what I can see, the code is just
missing an initial AR5K_EEPROM_READ. Add it right before the switch
statement.

Signed-off-by: Bruce Rogers <brogers@suse.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/drivers/net/ath/ath5k/ath5k_eeprom.c

index 983d206b7e36cc4981ecbb760a418c04c848e286..12519bc599fb7d4757da43a6bcc22f170024eabc 100644 (file)
@@ -416,6 +416,7 @@ ath5k_eeprom_read_turbo_modes(struct ath5k_hw *ah,
        if (ee->ee_version < AR5K_EEPROM_VERSION_5_0)
                return 0;
 
+       AR5K_EEPROM_READ(o++, val);
        switch (mode){
        case AR5K_EEPROM_MODE_11A:
                ee->ee_switch_settling_turbo[mode] = (val >> 6) & 0x7f;