diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-07 23:59:34 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 22:56:00 +0100 |
commit | c285b30b7d78aead0b201ca721d6e4c653e424ba (patch) | |
tree | 09cdb7021ad04fa1b226343c3f4afc520042f482 /src/mainboard | |
parent | 93fc60621c4a2a31149f1467dfb5925cad286a60 (diff) |
ASL: Remove unused modulo recipient.
Change-Id: I4b0a3073815ec8d98c2d23cd745f027517b6fa42
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13619
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/getac/p470/acpi/battery.asl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/getac/p470/acpi/battery.asl b/src/mainboard/getac/p470/acpi/battery.asl index 6862748cfc..48f1eca9b5 100644 --- a/src/mainboard/getac/p470/acpi/battery.asl +++ b/src/mainboard/getac/p470/acpi/battery.asl @@ -71,10 +71,10 @@ Scope(\_SB) { Store(\_SB.PCI0.LPCB.EC0.BFC0, Local0) Store(Local0, Index(PBIF, 2)) - Divide(Local0, 10, Local1, Local2) + Divide(Local0, 10, , Local2) Store(Local2, Index(PBIF, 5)) - Divide(Local0, 20, Local1, Local2) + Divide(Local0, 20, , Local2) Store(Local2, Index(PBIF, 6)) If(\_SB.PCI0.LPCB.EC0.BTYP) { @@ -176,10 +176,10 @@ Scope(\_SB) { Store(\_SB.PCI0.LPCB.EC0.BFC2, Local0) Store(Local0, Index(PBIF, 2)) - Divide(Local0, 10, Local1, Local2) + Divide(Local0, 10, , Local2) Store(Local2, Index(PBIF, 5)) - Divide(Local0, 20, Local1, Local2) + Divide(Local0, 20, , Local2) Store(Local2, Index(PBIF, 6)) If(\_SB.PCI0.LPCB.EC0.BTY2) { |