drivers/pc80/rtc/mc146818rtc_boot: Use size_t for length

Change-Id: I877e19c014759e33b9cc48ff9ee27e898737aece
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33805
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Elyes HAOUAS 2019-06-26 12:26:29 +02:00 committed by Martin Roth
parent 63f98f2304
commit 4d4a13f797
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ void sanitize_cmos(void)
CBFS_COMPONENT_CMOS_DEFAULT, &length); CBFS_COMPONENT_CMOS_DEFAULT, &length);
#endif #endif
if (cmos_default) { if (cmos_default) {
int i; size_t i;
cmos_disable_rtc(); cmos_disable_rtc();
for (i = 14; i < MIN(128, length); i++) for (i = 14; i < MIN(128, length); i++)
cmos_write_inner(cmos_default[i], i); cmos_write_inner(cmos_default[i], i);