summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2011-05-10 07:30:58 +0100
committerOwain G. Ainsworth <oga@openbsd.org>2011-05-30 00:19:30 +0100
commit430122b8abec79537ff6861e6fba578d7ca7d9b7 (patch)
tree1eb25f457ff5fa65af9759bab611f6cf348a48ba
parentbb585a6d93a457491eb559879ec6c7fb82e738f1 (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> (cherry picked from commit fd1ebd44fb72e7bdf57d00f8941cd6110a529cac) Signed-off-by: Owain G. Ainsworth <oga@openbsd.org>
-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 99755175..49f8993b 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -112,18 +112,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;