From 42efd7f593c9d270ff330d1282d9c569d1ec709a Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Mon, 26 Dec 2022 09:38:45 +0100 Subject: {superio,ec}/acpi: Replace constant "Zero" with actual number Change-Id: I449ec5b0bbf3f24d51688efef151d3018d2848b2 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/71524 Reviewed-by: Elyes Haouas Tested-by: build bot (Jenkins) --- src/superio/acpi/pnp.asl | 2 +- src/superio/acpi/pnp_kbc.asl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/superio/acpi') diff --git a/src/superio/acpi/pnp.asl b/src/superio/acpi/pnp.asl index dbdba5cb53..488a0db278 100644 --- a/src/superio/acpi/pnp.asl +++ b/src/superio/acpi/pnp.asl @@ -55,7 +55,7 @@ #define PNP_GENERIC_DIS(LDN) \ ENTER_CONFIG_MODE (LDN)\ - PNP_DEVICE_ACTIVE = Zero \ + PNP_DEVICE_ACTIVE = 0 \ EXIT_CONFIG_MODE ()\ diff --git a/src/superio/acpi/pnp_kbc.asl b/src/superio/acpi/pnp_kbc.asl index 4fd5ab0607..b0055be225 100644 --- a/src/superio/acpi/pnp_kbc.asl +++ b/src/superio/acpi/pnp_kbc.asl @@ -46,7 +46,7 @@ Device (SUPERIO_ID(KBD, SUPERIO_KBC_LDN)) { Method (_DIS) { ENTER_CONFIG_MODE (SUPERIO_KBC_LDN) - PNP_DEVICE_ACTIVE = Zero + PNP_DEVICE_ACTIVE = 0 EXIT_CONFIG_MODE () #if defined(SUPERIO_KBC_PS2LDN) Notify (SUPERIO_ID(PS2, SUPERIO_KBC_PS2LDN), 1) @@ -166,7 +166,7 @@ Device (SUPERIO_ID(PS2, SUPERIO_KBC_PS2LDN)) { Method (_DIS) { ENTER_CONFIG_MODE (SUPERIO_KBC_PS2LDN) - PNP_DEVICE_ACTIVE = Zero + PNP_DEVICE_ACTIVE = 0 EXIT_CONFIG_MODE () } -- cgit v1.2.3