From bc8f4dddc07894ab18e5d201a0ef2777e5555244 Mon Sep 17 00:00:00 2001 From: Marijan Limov Date: Fri, 10 Sep 2021 22:57:16 +0200 Subject: [PATCH] beryllium: Fix volume down button --- beryllium/DSDT.dsl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/beryllium/DSDT.dsl b/beryllium/DSDT.dsl index 20a837a..3d19920 100644 --- a/beryllium/DSDT.dsl +++ b/beryllium/DSDT.dsl @@ -57991,23 +57991,26 @@ Include("cust_thermal_zones.asl") { Name (RBUF, ResourceTemplate () { + //Power GpioInt (Edge, ActiveBoth, Exclusive, PullDown, 0x0010, "\\_SB.PM01", 0x00, ResourceConsumer, , ) { // Pin list 0x0000 } + //Vol Up GpioInt (Edge, ActiveBoth, ExclusiveAndWake, PullUp, 0x0000, "\\_SB.PM01", 0x00, ResourceConsumer, , ) { // Pin list 0x0085 } + //Vol Down GpioInt (Edge, ActiveBoth, ExclusiveAndWake, PullDown, 0x0000, "\\_SB.PM01", 0x00, ResourceConsumer, , ) { // Pin list - 0x0084 + 0x0001 } }) Return (RBUF) /* \_SB_.BTNS._CRS.RBUF */ -- 2.45.2