]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
ACPI / x86: Add quirk for "CheckPoint P-20-00" to not use bridge _CRS_ info
authorFeng Tang <feng.tang@intel.com>
Mon, 22 Oct 2012 23:31:14 +0000 (01:31 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 14 Nov 2012 23:16:01 +0000 (00:16 +0100)
This is to fix a regression https://bugzilla.kernel.org/show_bug.cgi?id=47981

The CheckPoint P-20-00 works ok before new machines (2008 and later) are
forced to use the bridge _CRS info by default in 2.6.34. Add this quirk
to restore its old way of working: not using bridge _CRS info.

Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
arch/x86/pci/acpi.c

index 192397c98606690f34d1d510052738f04bbdd931..7010c199b4f0ee68db45a54e85bd0cd08bac6229 100644 (file)
@@ -98,6 +98,16 @@ static const struct dmi_system_id pci_use_crs_table[] __initconst = {
                        DMI_MATCH(DMI_BIOS_VERSION, "6JET85WW (1.43 )"),
                },
        },
+       /* https://bugzilla.kernel.org/show_bug.cgi?id=47981 */
+       {
+               .callback = set_nouse_crs,
+               .ident = "CheckPoint P-20-00",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "CheckPoint"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "P-20-00"),
+                       DMI_MATCH(DMI_BOARD_NAME, "Bridgeport"),
+               },
+       },
        {}
 };