Skip to content

Commit

Permalink
Merge pull request #255 from flaviojs/fix-wrong-length-eeprom-C6K-VTT
Browse files Browse the repository at this point in the history
Fix wrong length of eeprom "C6K-VTT".
  • Loading branch information
grossmj authored Oct 4, 2024
2 parents ab50526 + af8620e commit 41cf5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/cisco_eeprom.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ static const struct cisco_eeprom eeprom_c6k_array[] = {
{ "C6K-POWER-1000W",
eeprom_c6k_power_1000w_data, sizeof(eeprom_c6k_power_1000w_data)/2 } ,
{ "C6K-VTT",
eeprom_c6k_vtt_data, sizeof(eeprom_c6k_vtt_data) },
eeprom_c6k_vtt_data, sizeof(eeprom_c6k_vtt_data)/2 },
{ "C6K-LC-WS-X6248",
eeprom_c6k_lc_wsx6248_data, sizeof(eeprom_c6k_lc_wsx6248_data)/2 } ,
{ NULL, NULL, 0 },
Expand Down

0 comments on commit 41cf5ce

Please sign in to comment.