svn commit: r200699 - stable/6/sys/boot/i386/libi386

John Baldwin jhb at FreeBSD.org
Fri Dec 18 22:24:20 UTC 2009


Author: jhb
Date: Fri Dec 18 22:24:19 2009
New Revision: 200699
URL: http://svn.freebsd.org/changeset/base/200699

Log:
  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.

Modified:
  stable/6/sys/boot/i386/libi386/biosacpi.c
Directory Properties:
  stable/6/sys/   (props changed)
  stable/6/sys/contrib/pf/   (props changed)
  stable/6/sys/dev/cxgb/   (props changed)

Modified: stable/6/sys/boot/i386/libi386/biosacpi.c
==============================================================================
--- stable/6/sys/boot/i386/libi386/biosacpi.c	Fri Dec 18 22:23:57 2009	(r200698)
+++ stable/6/sys/boot/i386/libi386/biosacpi.c	Fri Dec 18 22:24:19 2009	(r200699)
@@ -123,10 +123,8 @@ biosacpi_search_rsdp(char *base, int len
 	    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);
 	}
     }


More information about the svn-src-stable-6 mailing list