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:
parent
f70478c04d
commit
823e5012b0
@ -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…
x
Reference in New Issue
Block a user