diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-01-31 13:22:56 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 19:54:53 +0100 |
commit | d200e0e7fb37c545153d28cb518f6f5adcc0ac45 (patch) | |
tree | 831ac69425d725acd7aa9db011547c87c6ccc763 /src | |
parent | 2bb16a52180f06742231d756b6c29f3345c63586 (diff) | |
download | coreboot-d200e0e7fb37c545153d28cb518f6f5adcc0ac45.tar.xz |
stout: Fix ASL warnings
Change-Id: I1ddf37aa61fe95ad632c35d8041aed02fb1e8c01
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13533
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/quanta/it8518/acpi/battery.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/quanta/it8518/acpi/battery.asl b/src/ec/quanta/it8518/acpi/battery.asl index 7866261acc..cc62ee2409 100644 --- a/src/ec/quanta/it8518/acpi/battery.asl +++ b/src/ec/quanta/it8518/acpi/battery.asl @@ -164,7 +164,7 @@ Device (BATX) // Design capacity of Low (1%) // Divide (Local0, 20, Local1, Index (PBIF, 5)) - Divide (Local0, 100, Local1, Index (PBIF, 6)) + Divide (Local0, 100, , Index (PBIF, 6)) // // Design voltage @@ -301,7 +301,7 @@ Device (BATX) If (Local6) { Multiply (ECVO, Local1, Local1) - Divide (Local1, 1000, Local7, Local1) + Divide (Local1, 1000, , Local1) } Store (Local1, Index (PBST, One)) |