mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
15fcfbe046
The pci ids used a mixture of uppercase and lowercase, even in the same file. The inconsistency introduces unnecessary complexity in regular expressions. Diff made in vim with `%s/\v(CHIPSET\()([^,]+)/\1\L\2\E/`. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>` Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25257>
12 lines
493 B
C
12 lines
493 B
C
CHIPSET(0x2582, I915_G, "Intel(R) 915G")
|
|
CHIPSET(0x258a, E7221_G, "Intel(R) E7221G (i915)")
|
|
CHIPSET(0x2592, I915_GM, "Intel(R) 915GM")
|
|
CHIPSET(0x2772, I945_G, "Intel(R) 945G")
|
|
CHIPSET(0x27a2, I945_GM, "Intel(R) 945GM")
|
|
CHIPSET(0x27ae, I945_GME, "Intel(R) 945GME")
|
|
CHIPSET(0x29b2, Q35_G, "Intel(R) Q35")
|
|
CHIPSET(0x29c2, G33_G, "Intel(R) G33")
|
|
CHIPSET(0x29d2, Q33_G, "Intel(R) Q33")
|
|
CHIPSET(0xa011, PNV_GM, "Intel(R) Pineview M")
|
|
CHIPSET(0xa001, PNV_G, "Intel(R) Pineview")
|