From 46189f70a99ed743e9b7f838bb2f2aeb2910dc6b Mon Sep 17 00:00:00 2001 From: Rudolf Cornelissen Date: Wed, 19 Sep 2007 07:16:07 +0000 Subject: [PATCH] changed listing order of two recently added cards for me to keep oversight. No functional change. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22252 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../accelerants/nvidia/engine/nv_general.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/add-ons/accelerants/nvidia/engine/nv_general.c b/src/add-ons/accelerants/nvidia/engine/nv_general.c index 92cc53778b..2aa0397d20 100644 --- a/src/add-ons/accelerants/nvidia/engine/nv_general.c +++ b/src/add-ons/accelerants/nvidia/engine/nv_general.c @@ -765,7 +765,6 @@ status_t nv_general_powerup() status = nvxx_general_powerup(); break; case 0x024210de: /* Nvidia GeForce 6100 (NFORCE4 Integr.GPU) */ - case 0x03d110de: /* Nvidia GeForce 6100 nForce 405 */ si->ps.card_type = NV44; si->ps.card_arch = NV40A; sprintf(si->adi.name, "Nvidia GeForce 6100"); @@ -845,6 +844,13 @@ status_t nv_general_powerup() sprintf(si->adi.chipset, "XBOX, NV20"); status = nvxx_general_powerup(); break; + case 0x02e110de: + si->ps.card_type = G73; + si->ps.card_arch = NV40A; + sprintf(si->adi.name, "Nvidia GeForce 7600 GS"); + sprintf(si->adi.chipset, "G73"); + status = nvxx_general_powerup(); + break; case 0x030110de: /* Nvidia GeForce FX 5800 Ultra */ case 0x030210de: /* Nvidia GeForce FX 5800 */ si->ps.card_type = NV30; @@ -1121,7 +1127,6 @@ status_t nv_general_powerup() status = nvxx_general_powerup(); break; case 0x039210de: /* Nvidia GeForce 7600 GS */ - case 0x02e110de: si->ps.card_type = G73; si->ps.card_arch = NV40A; sprintf(si->adi.name, "Nvidia GeForce 7600 GS"); @@ -1143,6 +1148,13 @@ status_t nv_general_powerup() sprintf(si->adi.chipset, "G73"); status = nvxx_general_powerup(); break; + case 0x03d110de: /* Nvidia GeForce 6100 nForce 405 */ + si->ps.card_type = NV44; + si->ps.card_arch = NV40A; + sprintf(si->adi.name, "Nvidia GeForce 6100"); + sprintf(si->adi.chipset, "NV44"); + status = nvxx_general_powerup(); + break; /* Vendor Elsa GmbH */ case 0x0c601048: /* Elsa Gladiac Geforce2 MX */ si->ps.card_type = NV11;