Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Jul 2011 12:42:51 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r224130 - head/sys/dev/acpica
Message-ID:  <201107171242.p6HCgpxf073977@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107171242.p6HCgpxf073977>