diff options
author | Martin Roth <martinroth@google.com> | 2018-05-06 21:10:19 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-15 15:42:13 +0000 |
commit | 782c910e867d37867be7459f7619155b24be35e7 (patch) | |
tree | e77646a1b0757e58dc6b193585fbd39a1c396093 /src/mainboard/siemens | |
parent | e397f55702929e19fdb99d320ad2e74c4269882a (diff) | |
download | coreboot-782c910e867d37867be7459f7619155b24be35e7.tar.xz |
mainboard/amd/*: Remove unused arguments from SIOW ACPI method
Since the SIOW method doesn't use any arguments, don't pass it any,
and initialize it as not using any.
Change-Id: I3fa2ab8afb7d09c176a94bbd1db27587c36030cd
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/26126
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/siemens')
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/acpi/event.asl | 2 | ||||
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/dsdt.asl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/siemens/sitemp_g1p1/acpi/event.asl b/src/mainboard/siemens/sitemp_g1p1/acpi/event.asl index 89fbafbe2d..fafb0acc2a 100644 --- a/src/mainboard/siemens/sitemp_g1p1/acpi/event.asl +++ b/src/mainboard/siemens/sitemp_g1p1/acpi/event.asl @@ -140,7 +140,7 @@ Method(\_WAK, 1) { * Store(Arg0, Index(WKST,1)) * } */ - \_SB.PCI0.SIOW (Arg0) + \_SB.PCI0.SIOW () Return(WKST) } /* End Method(\_WAK) */ diff --git a/src/mainboard/siemens/sitemp_g1p1/dsdt.asl b/src/mainboard/siemens/sitemp_g1p1/dsdt.asl index 7a5fc85dcd..121aaf9edd 100644 --- a/src/mainboard/siemens/sitemp_g1p1/dsdt.asl +++ b/src/mainboard/siemens/sitemp_g1p1/dsdt.asl @@ -1132,7 +1132,7 @@ DefinitionBlock ("DSDT.aml", "DSDT", 2, "SIEMEN", "SITEMP ", 0x20101005) XPNP() } } - Method (SIOW, 1) + Method (SIOW, 0) { EPNP() Store (0x4, LDN) |