MFC 200357:

Don't warn about an RSDP with a corrupt checksum.  The kernel does a better
job about warning about these things later and this message can be
confusing.
This commit is contained in:
John Baldwin 2009-12-18 22:23:27 +00:00
parent f70478c04d
commit 823e5012b0

View File

@ -125,10 +125,8 @@ biosacpi_search_rsdp(char *base, int length)
sum = 0;
for (idx = 0; idx < RSDP_CHECKSUM_LENGTH; idx++)
sum += *(cp + idx);
if (sum != 0) {
printf("acpi: bad RSDP checksum (%d)\n", sum);
if (sum != 0)
continue;
}
return(rsdp);
}
}