diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-26 08:39:35 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-27 09:04:02 +0000 |
commit | dfbb634ae16065811894d67ff802c1e838ce0749 (patch) | |
tree | 0ad779089e19231a8e1c279ab40b3c9f195a680f /src/mainboard/intel/glkrvp/touchpad.asl | |
parent | ca4b587f95c0f1ed64e187511781abdfd4c7ebfb (diff) |
mainboard/acpi: Replace constant "One" with actual number
Change-Id: Id1078b14a805eea53d2a7c5a8183a5413f26e115
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71521
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/intel/glkrvp/touchpad.asl')
-rw-r--r-- | src/mainboard/intel/glkrvp/touchpad.asl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/intel/glkrvp/touchpad.asl b/src/mainboard/intel/glkrvp/touchpad.asl index 14ed629334..57b9c7fa2e 100644 --- a/src/mainboard/intel/glkrvp/touchpad.asl +++ b/src/mainboard/intel/glkrvp/touchpad.asl @@ -3,7 +3,7 @@ { Device (TPAD) { - Name(_ADR, One) + Name(_ADR, 1) Name (_HID, "ALPS0001") Name (_CID, "PNP0C50") Name (_DDN, "ALPS Touchpad") @@ -41,22 +41,22 @@ If(Arg2 == Zero) { // Revision 1 - If(Arg1 == One) + If(Arg1 == 1) { - Return (Buffer (One) {0x03}) + Return (Buffer (1) {0x03}) } Else { - Return (Buffer (One) {0x00}) + Return (Buffer (1) {0x00}) } - } ElseIf (Arg2 == One) { // Function 1 : HID Function + } ElseIf (Arg2 == 1) { // Function 1 : HID Function // HID Descriptor Address (IHV Specific) Return(0x0020) } Else { - Return (Buffer (One) {0x00}) + Return (Buffer (1) {0x00}) } } Else { - Return (Buffer (One) {0x00}) + Return (Buffer (1) {0x00}) } } } |