projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e702781
)
PCI: Add Thinkpad SL510 to pci=nocrs blacklist
author
Dave Jones
<
[email protected]
>
Wed, 4 Jan 2012 16:30:52 +0000
(11:30 -0500)
committer
Jesse Barnes
<
[email protected]
>
Fri, 6 Jan 2012 20:09:54 +0000
(12:09 -0800)
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 <
[email protected]
>
Signed-off-by: Dave Jones <
[email protected]
>
Signed-off-by: Jesse Barnes <
[email protected]
>
arch/x86/pci/acpi.c
patch
|
blob
|
history
diff --git
a/arch/x86/pci/acpi.c
b/arch/x86/pci/acpi.c
index 0d9329f203e9f9f7ec381d60196124086ca4d966..e662ceebd79882847cfbe639d25d036ef8456521 100644
(file)
--- a/
arch/x86/pci/acpi.c
+++ b/
arch/x86/pci/acpi.c
@@
-73,6
+73,16
@@
static const struct dmi_system_id pci_use_crs_table[] __initconst = {
DMI_MATCH(DMI_BIOS_VERSION, "A09"),
},
},
+ /* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */
+ {
+ .callback = set_nouse_crs,
+ .ident = "Thinkpad SL510",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
+ DMI_MATCH(DMI_BOARD_NAME, "2847DFG"),
+ DMI_MATCH(DMI_BIOS_VERSION, "6JET85WW (1.43 )"),
+ },
+ },
{}
};