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/i830_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/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index abff5870..7e0ebf3f 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -100,8 +100,8 @@ static SymTabRec I830Chipsets[] = { {PCI_CHIP_I945_G, "945G"}, {PCI_CHIP_I945_GM, "945GM"}, {PCI_CHIP_I945_GME, "945GME"}, - {PCI_CHIP_IGD_GM, "IGD"}, - {PCI_CHIP_IGD_G, "IGD"}, + {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"}, @@ -111,13 +111,13 @@ static SymTabRec I830Chipsets[] = { {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} }; @@ -1049,10 +1049,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "945GME"; break; case PCI_CHIP_IGD_GM: - chipname = "IGD"; + chipname = "Pineview GM"; break; case PCI_CHIP_IGD_G: - chipname = "IGD"; + chipname = "Pineview G"; break; case PCI_CHIP_I965_G: chipname = "965G"; @@ -1082,10 +1082,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "Q33"; break; case PCI_CHIP_GM45_GM: - chipname = "Mobile IntelĀ® GM45 Express Chipset"; + chipname = "GM45"; break; case PCI_CHIP_IGD_E_G: - chipname = "Intel Integrated Graphics Device"; + chipname = "4 Series"; break; case PCI_CHIP_G45_G: chipname = "G45/G43"; @@ -1097,10 +1097,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "G41"; break; case PCI_CHIP_IGDNG_D_G: - chipname = "IGDNG_D"; + chipname = "Clarkdale"; break; case PCI_CHIP_IGDNG_M_G: - chipname = "IGDNG_M"; + chipname = "Arrandale"; break; default: chipname = "unknown chipset"; |