diff options
author | Dave Jones <davej@redhat.com> | 2012-01-04 11:33:12 -0500 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2012-01-06 15:09:41 -0500 |
commit | e702781fa846dd726b73e673f91ffbd3b0e8d114 (patch) | |
tree | 0dc3c28bbb57ab526e3e0bec5b93aad681feedd8 /arch/x86 | |
parent | 28c3c05d337f6fdf84faf69374e6325b80cbf9ad (diff) |
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>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/pci/acpi.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c index f5ccf29cd6aa..0d9329f203e9 100644 --- a/arch/x86/pci/acpi.c +++ b/arch/x86/pci/acpi.c | |||
@@ -61,6 +61,18 @@ static const struct dmi_system_id pci_use_crs_table[] __initconst = { | |||
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 | ||