svn commit: r224130 - head/sys/dev/acpica

John Baldwin jhb at FreeBSD.org
Sun Jul 17 12:42:51 UTC 2011


Author: jhb
Date: Sun Jul 17 12:42:51 2011
New Revision: 224130
URL: http://svn.freebsd.org/changeset/base/224130

Log:
  Don't ignore negatively decoded address ranges.
  
  Reported by:	scottl

Modified:
  head/sys/dev/acpica/acpi_pcib_acpi.c

Modified: head/sys/dev/acpica/acpi_pcib_acpi.c
==============================================================================
--- head/sys/dev/acpica/acpi_pcib_acpi.c	Sun Jul 17 12:07:22 2011	(r224129)
+++ head/sys/dev/acpica/acpi_pcib_acpi.c	Sun Jul 17 12:42:51 2011	(r224130)
@@ -238,13 +238,6 @@ acpi_pcib_producer_handler(ACPI_RESOURCE
 			return (AE_OK);
 		}
 
-		/* XXX: Not sure this is correct? */
-		if (res->Data.Address.Decode != ACPI_POS_DECODE) {
-			device_printf(sc->ap_dev,
-		    "Ignoring %d range (%#jx-%#jx) due to negative decode\n",
-			    type, (uintmax_t)min, (uintmax_t)max);
-			break;
-		}
 		if (min + length - 1 != max)
 			device_printf(sc->ap_dev,
 			    "Length mismatch for %d range: %jx vs %jx\n", type,


More information about the svn-src-head mailing list