diff options
author | Felix Singer <felix.singer@secunet.com> | 2021-07-26 20:18:46 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-07-28 13:50:59 +0000 |
commit | b8c2fcca7358839b46b63951712c9b87dbc69c43 (patch) | |
tree | f4ca029de6fb4b443b3f81fb0d4c7bf91b5028b5 /src/ec | |
parent | afa6c41a80cc19209b418ea1118e2bb7dd5da032 (diff) |
ec/roda/it8518/acpi: Remove unnecessary assignments
Simplify some operations to get rid of unnecessary assignments.
Change-Id: I02c93d42ce1de693d5d58fd9a29ccd5bff0f5978
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56609
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/roda/it8518/acpi/battery.asl | 6 | ||||
-rw-r--r-- | src/ec/roda/it8518/acpi/ec.asl | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/ec/roda/it8518/acpi/battery.asl b/src/ec/roda/it8518/acpi/battery.asl index 7180ace088..f164587102 100644 --- a/src/ec/roda/it8518/acpi/battery.asl +++ b/src/ec/roda/it8518/acpi/battery.asl @@ -46,8 +46,7 @@ Device (BAT0) Local0 = 0x0f - Local1 = ECPS - Local1 &= 0x02 + Local1 = ECPS & 0x02 If (Local1 == 0x02) { Local0 = 0x1f @@ -75,8 +74,7 @@ Device (BAT0) { Printf ("-----> BAT0: _BST") - Local0 = B0ST - Local0 &= 0x40 + Local0 = B0ST & 0x40 If (Local0 == 0x40) { If (PWRS == 1) diff --git a/src/ec/roda/it8518/acpi/ec.asl b/src/ec/roda/it8518/acpi/ec.asl index 3b9a38ded1..fc241be8af 100644 --- a/src/ec/roda/it8518/acpi/ec.asl +++ b/src/ec/roda/it8518/acpi/ec.asl @@ -132,8 +132,7 @@ Device (EC0) { Printf ("-----> EC: _Q43") - Local0 = BRIG - Local0 += 1 + Local0 = BRIG + 1 If (Local0 > 0xaa) { Local0 = 0xaa } @@ -148,8 +147,7 @@ Device (EC0) { Printf ("-----> EC: _Q44") - Local0 = BRIG - Local0 -= 1 + Local0 = BRIG - 1 If (Local0 < 0xa0) { Local0 = 0xa0 |