From: Shubham Panwar <shubiisp8@gmail.com>
To: linux-acpi@vger.kernel.org
Cc: Shubham Panwar <shubiisp8@gmail.com>
Subject: [v2] ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue
Date: Sun, 20 Oct 2024 15:20:46 +0530 [thread overview]
Message-ID: <20241020095045.6036-2-shubiisp8@gmail.com> (raw)
Changes in v2:
- Removed extra blank lines
- Fixed whitespace issues
- Added appropriate commit description
This patch adds a DMI quirk for the Samsung Galaxy Book2 to fix the initial
lid state detection issue. The _LID device incorrectly returns the lid
status as "closed" during boot, causing the system to enter a suspend loop
right after booting. This quirk ensures that the correct lid state is
reported initially, preventing the system from immediately suspending
after startup.
This fix only addresses the initial lid state detection and ensures proper
system behavior upon boot.
Signed-off-by: Shubham Panwar <shubiisp8@gmail.com>
---
drivers/acpi/button.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c
index 51470208e..7773e6b86 100644
--- a/drivers/acpi/button.c
+++ b/drivers/acpi/button.c
@@ -130,6 +130,17 @@ static const struct dmi_system_id dmi_lid_quirks[] = {
},
.driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_OPEN,
},
+ {
+ /*
+ * Samsung galaxybook2 ,initial _LID device notification returns
+ * lid closed.
+ */
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "750XED"),
+ },
+ .driver_data = (void *)(long)ACPI_BUTTON_LID_INIT_OPEN,
+ },
{}
};
--
2.47.0
next reply other threads:[~2024-10-20 9:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-20 9:50 Shubham Panwar [this message]
2024-10-21 12:02 ` [v2] ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241020095045.6036-2-shubiisp8@gmail.com \
--to=shubiisp8@gmail.com \
--cc=linux-acpi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox