Chameleon

Chameleon Commit Details

Date:2011-08-14 11:31:35 (12 years 8 months ago)
Author:Azimutz
Commit:1375
Parents: 1374
Message:Return some code to the previous location, mainly the CHIP_FAMILY_CEDAR check, but keep the port limit disabled for now; AtiPorts key can be used if needed.
Changes:
M/trunk/i386/libsaio/ati.c

File differences

trunk/i386/libsaio/ati.c
13031303
13041304
13051305
1306
1307
1308
1309
1310
1311
1312
1313
13061314
13071315
13081316
......
13181326
13191327
13201328
1321
1322
1323
1324
1325
1326
13271329
13281330
13291331
}
}
//card->ports = 2; // default - Azi: default is card_configs
if (card->info->chip_family >= CHIP_FAMILY_CEDAR)
{
card->flags |= EVERGREEN;
//card->ports = 3; //Azi: use the AtiPorts key if needed
}
//atN = 0;
card->cfg_name = getStringForKey(kAtiConfig, &bootInfo->chameleonConfig);
card->ports = card_configs[i].ports;
}
if (card->info->chip_family >= CHIP_FAMILY_CEDAR)
{
card->flags |= EVERGREEN;
card->ports = 3; //Azi: not sure of the usefulness ??
}
getIntForKey(kAtiPorts, &n_ports, &bootInfo->bootConfig);
if (n_ports > 0){
card->ports = n_ports;

Archive Download the corresponding diff file

Revision: 1375