Hugo Villeneuve [Tue, 4 Nov 2025 20:20:15 +0000 (15:20 -0500)]
tlv_eeprom: fix comparison of integer expressions of different signedness
Fixes the following warnings:
tlv_eeprom.c:246:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare]
246 | for (i = 0; i < ARRAY_SIZE(tlv_code_list); i++) {
| ^
Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>