diff options
author | Adam Jackson <ajax@redhat.com> | 2009-08-11 14:50:03 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-08-11 14:50:03 -0400 |
commit | 713820197755ea53003b36a920922c3c525eeeea (patch) | |
tree | 69401beb26c09a7bf2b10ab1f9430f5858bee5a3 /src/i810_driver.c | |
parent | e8f0763d405a8152c74c28792c52fe12c1d41dd5 (diff) |
Fix the chip names printed in the log to be less obnoxious.
Names taken from pci.ids. Pineview appears to be a platform not a GMCH,
so use the G/GM convention to distinguish.
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r-- | src/i810_driver.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index f80da5e0..03669016 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -174,8 +174,8 @@ static SymTabRec I810Chipsets[] = { {PCI_CHIP_I945_G, "945G"}, {PCI_CHIP_I945_GM, "945GM"}, {PCI_CHIP_I945_GME, "945GME"}, - {PCI_CHIP_IGD_GM, "IGD_GM"}, - {PCI_CHIP_IGD_G, "IGD_G"}, + {PCI_CHIP_IGD_GM, "Pineview GM"}, + {PCI_CHIP_IGD_G, "Pineview G"}, {PCI_CHIP_I965_G, "965G"}, {PCI_CHIP_G35_G, "G35"}, {PCI_CHIP_I965_Q, "965Q"}, @@ -185,13 +185,13 @@ static SymTabRec I810Chipsets[] = { {PCI_CHIP_G33_G, "G33"}, {PCI_CHIP_Q35_G, "Q35"}, {PCI_CHIP_Q33_G, "Q33"}, - {PCI_CHIP_GM45_GM, "Mobile IntelĀ® GM45 Express Chipset"}, - {PCI_CHIP_IGD_E_G, "Intel Integrated Graphics Device"}, + {PCI_CHIP_GM45_GM, "GM45"}, + {PCI_CHIP_IGD_E_G, "4 Series"}, {PCI_CHIP_G45_G, "G45/G43"}, {PCI_CHIP_Q45_G, "Q45/Q43"}, {PCI_CHIP_G41_G, "G41"}, - {PCI_CHIP_IGDNG_D_G, "IGDNG_D"}, - {PCI_CHIP_IGDNG_M_G, "IGDNG_M"}, + {PCI_CHIP_IGDNG_D_G, "Clarkdale"}, + {PCI_CHIP_IGDNG_M_G, "Arrandale"}, {-1, NULL} }; |