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);
        }
     }
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to