diff options
Diffstat (limited to 'src/superio/acpi')
-rw-r--r-- | src/superio/acpi/pnp.asl | 2 | ||||
-rw-r--r-- | src/superio/acpi/pnp_kbc.asl | 4 |
2 files changed, 3 insertions, 3 deletions
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 () } |