diff options
Diffstat (limited to 'src/mainboard/google/rambi/acpi')
-rw-r--r-- | src/mainboard/google/rambi/acpi/mainboard.asl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mainboard/google/rambi/acpi/mainboard.asl b/src/mainboard/google/rambi/acpi/mainboard.asl index 7bd9aa1e6d..7236c93dff 100644 --- a/src/mainboard/google/rambi/acpi/mainboard.asl +++ b/src/mainboard/google/rambi/acpi/mainboard.asl @@ -52,10 +52,13 @@ Scope (\_SB) Method (_CRS) { - /* Only return interrupt if I2C1 is PCI mode */ + /* Return interrupt if I2C1 is PCI mode */ If (LEqual (\S1EN, 0)) { Return (^RBUF) } + + /* Return empty resource template otherwise */ + Return (ResourceTemplate() {}) } } @@ -76,10 +79,13 @@ Scope (\_SB) Method (_CRS) { - /* Only return interrupt if I2C6 is PCI mode */ + /* Return interrupt if I2C6 is PCI mode */ If (LEqual (\S6EN, 0)) { Return (^RBUF) } + + /* Return empty resource template otherwise */ + Return (ResourceTemplate() {}) } } } |