Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 131 → Rev 132

/shark/trunk/drivers/svga/vga.c
35,6 → 35,8
extern int nv3_test(void);
extern int savage_test(void);
extern int r128_test(void);
extern int neo_test(void);
extern int vesa_test(void);
 
/* If == 0 then nothing is defined by the user... */
int __svgalib_default_mode = 10;
986,7 → 988,8
* NV3 (NVIDIA: GEFORCE/TNT/TNT2)
* SAVAGE (S3: VIRGE/SAVAGE
* R128 (ATI: RAGE 128/RADEON)
*
* NEOMAGIC (NEOMAGIC CARD)
*
*/
CHIPSET = set_chipset;
1006,6 → 1009,12
case R128:
r128_test();
break;
case NEOMAGIC:
neo_test();
break;
case VESA:
vesa_test();
break;
}
}