diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-08 00:02:37 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 19:57:17 +0100 |
commit | 764bd9789d14ec6f7ef20dd93dca91ed1aa5c055 (patch) | |
tree | 40b57c134a437e34668902c5e96a641806c8c58d /src | |
parent | ec730396cc7fdf5ce0f48fb5f1a9dba2ecac601e (diff) | |
download | coreboot-764bd9789d14ec6f7ef20dd93dca91ed1aa5c055.tar.xz |
rx886ex: Fix PBIF reference.
PBIF is package and so a scalar can't be stored instead of it.
What was meant is probably Index(PBIF, 0)
Change-Id: Iddd18e1f165e0f48fd91124200aba5c6b4a5b4bd
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13621
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/roda/rk886ex/acpi/battery.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/roda/rk886ex/acpi/battery.asl b/src/mainboard/roda/rk886ex/acpi/battery.asl index d7928e5b4f..8de0b7fdd1 100644 --- a/src/mainboard/roda/rk886ex/acpi/battery.asl +++ b/src/mainboard/roda/rk886ex/acpi/battery.asl @@ -144,7 +144,7 @@ Device (BAT1) Store ("Bad", Index(PBIF, 10)) Store ("Bad", Index(PBIF, 11)) Store ("Bad", Index(PBIF, 12)) - Store (1, PBIF) + Store (1, Index(PBIF, 0)) } Method(IVBS, 0) @@ -284,7 +284,7 @@ Device (BAT2) Store ("Bad", Index(PBIF, 10)) Store ("Bad", Index(PBIF, 11)) Store ("Bad", Index(PBIF, 12)) - Store (1, PBIF) + Store (1, Index(PBIF, 0)) } Method(IVBS, 0) |