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.

Submitted by:	infofarmer
MFC after:	1 week
This commit is contained in:
jhb 2009-12-10 14:54:29 +00:00
parent 78d04c5982
commit 71c74ac313

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);
}
}