[coreboot] New patch to review for coreboot: 56ddc41 SMSC MEC1308: Fix ACPI code to work with newer IASL versions

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Fri Apr 27 01:07:16 CEST 2012


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/934

-gerrit

commit 56ddc41d17986ff7be91a5382c08c8beddd90663
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Fri Apr 27 00:47:21 2012 +0200

    SMSC MEC1308: Fix ACPI code to work with newer IASL versions
    
    Newer versions of IASL didn't like our IO constructs. Use
    FixedIO instead, it's also shorter.
    
    Change-Id: I9364d993ecb71ffd84c0313ca1e2f870af59eb24
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
---
 src/superio/smsc/mec1308/acpi/superio.asl |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/superio/smsc/mec1308/acpi/superio.asl b/src/superio/smsc/mec1308/acpi/superio.asl
index 96f2ef8..2b32e33 100644
--- a/src/superio/smsc/mec1308/acpi/superio.asl
+++ b/src/superio/smsc/mec1308/acpi/superio.asl
@@ -249,12 +249,12 @@ Device (SIO) {
 
 		Name (_CRS, ResourceTemplate()
 		{
-			IO (Decode16, SIO_SMBX_IO0, SIO_SMBX_IO0, 0x34, 0x34)
+			FixedIO (SIO_SMBX_IO0, 0x34)
 		})
 
 		Name (_PRS, ResourceTemplate()
 		{
-			IO (Decode16, SIO_SMBX_IO0, SIO_SMBX_IO0, 0x34, 0x34)
+			FixedIO (SIO_SMBX_IO0, 0x34)
 		})
 	}
 #endif




More information about the coreboot mailing list