Created
November 1, 2025 13:05
-
-
Save Crashdummyy/6304a8cd9f211ca236def84a58b17f05 to your computer and use it in GitHub Desktop.
Legion GO 2 s2idle quirk ( 6.17 )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/drivers/platform/x86/amd/pmc/pmc-quirks.c b/drivers/platform/x86/amd/pmc/pmc-quirks.c | |
| index d63aaad7ef59..ac94c05db62f 100644 | |
| --- a/drivers/platform/x86/amd/pmc/pmc-quirks.c | |
| +++ b/drivers/platform/x86/amd/pmc/pmc-quirks.c | |
| @@ -204,6 +204,23 @@ static const struct dmi_system_id fwbug_list[] = { | |
| DMI_MATCH(DMI_PRODUCT_NAME, "82ND"), | |
| } | |
| }, | |
| + /* https://gitlab.freedesktop.org/drm/amd/-/issues/4618 */ | |
| + { | |
| + | |
| + .ident = "Lenovo Legion Go 2", | |
| + .driver_data = &quirk_s2idle_bug, | |
| + .matches = { | |
| + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | |
| + DMI_MATCH(DMI_PRODUCT_NAME, "83N0"), | |
| + } | |
| + }, | |
| + /* https://gitlab.freedesktop.org/drm/amd/-/issues/4618 */ | |
| + { | |
| + .ident = "Lenovo Legion Go 2", | |
| + .driver_data = &quirk_s2idle_bug, | |
| + .matches = { | |
| + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), | |
| + DMI_MATCH(DMI_PRODUCT_NAME, "83N1"), | |
| + } | |
| + }, | |
| /* https://gitlab.freedesktop.org/drm/amd/-/issues/2684 */ | |
| { | |
| .ident = "HP Laptop 15s-eq2xxx", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment