Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

PCI: Add Dell Studio 1557 to pci=nocrs blacklist

The Dell Studio 1557 also doesn't suspend correctly when CRS is enabled.
Details at https://bugzilla.redhat.com/show_bug.cgi?id=769657

Reported-by: Gregory S. Hoerner <ghoerner@transcendingthought.com>
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

authored by

Dave Jones and committed by
Jesse Barnes
e702781f 28c3c05d

+12
+12
arch/x86/pci/acpi.c
··· 61 61 }, 62 62 }, 63 63 64 + /* Now for the blacklist.. */ 65 + 66 + /* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */ 67 + { 68 + .callback = set_nouse_crs, 69 + .ident = "Dell Studio 1557", 70 + .matches = { 71 + DMI_MATCH(DMI_BOARD_VENDOR, "Dell Inc."), 72 + DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1557"), 73 + DMI_MATCH(DMI_BIOS_VERSION, "A09"), 74 + }, 75 + }, 64 76 {} 65 77 }; 66 78