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:
parent
78d04c5982
commit
71c74ac313
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user