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@google.com>
Reviewed-on: http://review.coreboot.org/934
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Stefan Reinauer 2012-04-27 00:47:21 +02:00
parent bf34e94095
commit b5866f2fb6
1 changed files with 2 additions and 2 deletions

View File

@ -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