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

PCI: Add Thinkpad SL510 to pci=nocrs blacklist

Enabling CRS by default breaks suspend on the Thinkpad SL510.
Details in https://bugzilla.redhat.com/show_bug.cgi?id=769657

Reported-by: Stefan Kirrmann <stefan.kirrmann@gmail.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
8b6a5af9 e702781f

+10
+10
arch/x86/pci/acpi.c
··· 73 73 DMI_MATCH(DMI_BIOS_VERSION, "A09"), 74 74 }, 75 75 }, 76 + /* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */ 77 + { 78 + .callback = set_nouse_crs, 79 + .ident = "Thinkpad SL510", 80 + .matches = { 81 + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), 82 + DMI_MATCH(DMI_BOARD_NAME, "2847DFG"), 83 + DMI_MATCH(DMI_BIOS_VERSION, "6JET85WW (1.43 )"), 84 + }, 85 + }, 76 86 {} 77 87 }; 78 88