superio/winbond/w83627hf/acpi: Replace LNot() with ASL 2.0 syntax
Replace `LNot (a)` with `!a`. Change-Id: I9f08cc180614e7d966256b2944745b0bc1d29865 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60596 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
parent
ecc63d9bf4
commit
1a6925cd7c
|
@ -306,7 +306,7 @@ Device(SIO) {
|
|||
EXIT_CONFIG_MODE ()
|
||||
ShiftLeft(Local1, 8, Local1)
|
||||
Or(Local1, Local2, Local1)
|
||||
If (LNot(Local0)) {
|
||||
If (!Local0) {
|
||||
Return (FDE)
|
||||
}
|
||||
|
||||
|
@ -724,7 +724,7 @@ Device(SIO) {
|
|||
{
|
||||
Store (0x00, Local0)
|
||||
ENTER_CONFIG_MODE (3)
|
||||
If (LNot(And(OPT2, 0x30)))
|
||||
If (!And(OPT2, 0x30))
|
||||
{
|
||||
If (ACTR) {
|
||||
Store (0x0F, Local0)
|
||||
|
|
Loading…
Reference in New Issue