diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2017-07-06 12:55:33 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-05-13 18:35:44 +0000 |
commit | 625066e4f425a3d28a7fa30a2e06e97d39792093 (patch) | |
tree | fd9ee4986778fe1d48ac75058752044acfc6d387 | |
parent | f0a8b042c9f1eed9b149398d27e16ec590641881 (diff) |
ec/quanta/ene_kb3940q/acpi: Fix PS2K under Windows
Add _HID to parent SIO device so Windows can find the PS2K, and
remove _ADR since HID and ADR are mutually exclusive.
TEST=build/boot Win11 on google/butterfly, verify keyboard functional.
Change-Id: I772ceef1b439cfd4e2740e53362bee9d494fb36d
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75174
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r-- | src/ec/quanta/ene_kb3940q/acpi/superio.asl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ec/quanta/ene_kb3940q/acpi/superio.asl b/src/ec/quanta/ene_kb3940q/acpi/superio.asl index b5962f0267..8ace6dd01e 100644 --- a/src/ec/quanta/ene_kb3940q/acpi/superio.asl +++ b/src/ec/quanta/ene_kb3940q/acpi/superio.asl @@ -3,9 +3,8 @@ // Scope is \_SB.PCI0.LPCB Device (SIO) { + Name (_HID, EisaId("PNP0A05")) Name (_UID, 0) - Name (_ADR, 0) - #ifdef SIO_EC_ENABLE_PS2K Device (PS2K) // Keyboard |