diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-11-05 20:10:25 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-11-05 20:10:25 +0100 |
commit | 2f5065a0bc9d0afb45f2ae284bd525d55ce82c33 (patch) | |
tree | 5de0d6440101a078be1e0286053c27141ec1ba95 /drivers/acpi | |
parent | Merge tag 'block-6.1-2022-11-05' of git://git.kernel.dk/linux (diff) | |
parent | Merge branch 'acpi-x86' (diff) | |
download | linux-2f5065a0bc9d0afb45f2ae284bd525d55ce82c33.tar.xz linux-2f5065a0bc9d0afb45f2ae284bd525d55ce82c33.zip |
Merge tag 'acpi-6.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fix from Rafael Wysocki:
"Add StorageD3Enable quirk for Dell Inspiron 16 5625 (Mario
Limonciello)"
* tag 'acpi-6.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: x86: Add another system to quirk list for forcing StorageD3Enable
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/x86/utils.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/acpi/x86/utils.c b/drivers/acpi/x86/utils.c index f8a2cbdc0ce2..d7d3f1669d4c 100644 --- a/drivers/acpi/x86/utils.c +++ b/drivers/acpi/x86/utils.c @@ -219,6 +219,12 @@ static const struct dmi_system_id force_storage_d3_dmi[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 14 7425 2-in-1"), } }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 16 5625"), + } + }, {} }; |