diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-11-05 12:10:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-11-05 12:10:25 -0700 |
commit | 2f5065a0bc9d0afb45f2ae284bd525d55ce82c33 (patch) | |
tree | 5de0d6440101a078be1e0286053c27141ec1ba95 /drivers/acpi | |
parent | 4869f5750afdb10a0e9cfa0252fce33e53ab681e (diff) | |
parent | 6faf4ce500d658bcf4d1fe6fe5de2d4d50366e25 (diff) | |
download | linux-next-2f5065a0bc9d0afb45f2ae284bd525d55ce82c33.tar.gz |
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"), + } + }, {} }; |