summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/s230u/acpi/platform.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-26 09:32:47 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-27 09:05:56 +0000
commitfa06bcba06c5842faae797629e9f72ec28d511c0 (patch)
tree8fba8940a2bf47e403ee5009a623960cf344c975 /src/mainboard/lenovo/s230u/acpi/platform.asl
parent7b8ac0030c611ad84d9ba84b3e90c36233a32c11 (diff)
mainboard/acpi: Replace constant "Zero" with actual number
Change-Id: I4f2f02623b060ef0ebefc5aceb713c77a8b1e9a6 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71523 Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/lenovo/s230u/acpi/platform.asl')
-rw-r--r--src/mainboard/lenovo/s230u/acpi/platform.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/s230u/acpi/platform.asl b/src/mainboard/lenovo/s230u/acpi/platform.asl
index 9ad3ff1f0e..2a5dd24f2d 100644
--- a/src/mainboard/lenovo/s230u/acpi/platform.asl
+++ b/src/mainboard/lenovo/s230u/acpi/platform.asl
@@ -25,12 +25,12 @@ Scope(\_SI)
If (Arg0 < 2)
{
/* Thinkpad LED on */
- \_SB.PCI0.LPCB.EC0.LED (Zero, 0x80)
+ \_SB.PCI0.LPCB.EC0.LED (0, 0x80)
}
Else
{
/* Thinkpad LED blinking */
- \_SB.PCI0.LPCB.EC0.LED (Zero, 0xC0)
+ \_SB.PCI0.LPCB.EC0.LED (0, 0xC0)
}
}
}