From 71c74ac3138f88ccfed78e84266cec28b1e51e24 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 10 Dec 2009 14:54:29 +0000 Subject: [PATCH] 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 --- sys/boot/i386/libi386/biosacpi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/boot/i386/libi386/biosacpi.c b/sys/boot/i386/libi386/biosacpi.c index 081598394ea2..e9e2436b47cd 100644 --- a/sys/boot/i386/libi386/biosacpi.c +++ b/sys/boot/i386/libi386/biosacpi.c @@ -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); } }