summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2011-05-10 07:30:58 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2011-05-10 07:30:58 +0100
commitfd1ebd44fb72e7bdf57d00f8941cd6110a529cac (patch)
tree4df23910f8fabfdb50a48f782e8ac1d200b83ae7
parente9811bb777dfc51af19836175645400489f7d991 (diff)
module: Adopt IVB's more detailed naming convention for SNB
This should fix the seven-fold repetition of "SandyBridge" in the list of supported chipsets during start-up... And be more useful in bug reports! Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/intel_module.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/intel_module.c b/src/intel_module.c
index 4ea87319..9e302bb1 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -113,18 +113,18 @@ static const SymTabRec _intel_chipsets[] = {
{PCI_CHIP_B43_G1, "B43"},
{PCI_CHIP_IRONLAKE_D_G, "Clarkdale"},
{PCI_CHIP_IRONLAKE_M_G, "Arrandale"},
- {PCI_CHIP_SANDYBRIDGE_GT1, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_GT2, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_GT2_PLUS, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_M_GT1, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_M_GT2, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_M_GT2_PLUS, "Sandybridge" },
- {PCI_CHIP_SANDYBRIDGE_S_GT, "Sandybridge" },
- {PCI_CHIP_IVYBRIDGE_M_GT1, "Ivybridge Mobile GT1" },
- {PCI_CHIP_IVYBRIDGE_M_GT2, "Ivybridge Mobile GT2" },
- {PCI_CHIP_IVYBRIDGE_D_GT1, "Ivybridge Desktop GT1" },
- {PCI_CHIP_IVYBRIDGE_D_GT2, "Ivybridge Desktop GT2" },
- {PCI_CHIP_IVYBRIDGE_S_GT1, "Ivybridge Server GT1" },
+ {PCI_CHIP_SANDYBRIDGE_GT1, "Sandybridge Desktop (GT1)" },
+ {PCI_CHIP_SANDYBRIDGE_GT2, "Sandybridge Desktop (GT2)" },
+ {PCI_CHIP_SANDYBRIDGE_GT2_PLUS, "Sandybridge Desktop (GT2+)" },
+ {PCI_CHIP_SANDYBRIDGE_M_GT1, "Sandybridge Mobile (GT1)" },
+ {PCI_CHIP_SANDYBRIDGE_M_GT2, "Sandybridge Mobile (GT2)" },
+ {PCI_CHIP_SANDYBRIDGE_M_GT2_PLUS, "Sandybridge Mobile (GT2+)" },
+ {PCI_CHIP_SANDYBRIDGE_S_GT, "Sandybridge Server" },
+ {PCI_CHIP_IVYBRIDGE_M_GT1, "Ivybridge Mobile (GT1)" },
+ {PCI_CHIP_IVYBRIDGE_M_GT2, "Ivybridge Mobile (GT2)" },
+ {PCI_CHIP_IVYBRIDGE_D_GT1, "Ivybridge Desktop (GT1)" },
+ {PCI_CHIP_IVYBRIDGE_D_GT2, "Ivybridge Desktop (GT2)" },
+ {PCI_CHIP_IVYBRIDGE_S_GT1, "Ivybridge Server" },
{-1, NULL}
};
SymTabRec *intel_chipsets = (SymTabRec *) _intel_chipsets;