summaryrefslogtreecommitdiff
path: root/src/nv_driver.c
diff options
context:
space:
mode:
authorMarkus Strobl <markus.strobl@gmx.at>2010-03-10 18:26:33 -0800
committerAaron Plattner <aplattner@nvidia.com>2010-03-10 18:28:07 -0800
commit347625b8e187c4ab696cd1dad95e49c31ced12f6 (patch)
tree9b9ec38aee98ca3f1e5436e5421f0ceef2e7f74e /src/nv_driver.c
parente6b046329480a26ecebadf4314673db3f107f83e (diff)
Bug #19817: Add support for GeForce 7025 and 7050.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Diffstat (limited to 'src/nv_driver.c')
-rw-r--r--src/nv_driver.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nv_driver.c b/src/nv_driver.c
index 31fe78b..99d172f 100644
--- a/src/nv_driver.c
+++ b/src/nv_driver.c
@@ -380,6 +380,9 @@ static SymTabRec NVKnownChipsets[] =
{ 0x10DE03D2, "GeForce 6100 nForce 400" },
{ 0x10DE03D5, "GeForce 6100 nForce 420" },
+ { 0x10DE053E, "GeForce 7025" },
+ { 0x10DE053B, "GeForce 7050" },
+
/*************** G8x ***************/
{ 0x10DE0191, "GeForce 8800 GTX" },
{ 0x10DE0193, "GeForce 8800 GTS" },
@@ -817,6 +820,7 @@ NVIsSupported(CARD32 id)
case 0x0340:
case 0x0390:
case 0x03D0:
+ case 0x0530:
return TRUE;
}
@@ -1741,6 +1745,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags)
case 0x0290: /* GeForce 7900 */
case 0x0390: /* GeForce 7600 */
case 0x0240: /* GeForce 6100 */
+ case 0x0530: /* GeForce 7050, 7025 */
case 0x03D0:
pNv->Architecture = NV_ARCH_40;
break;