Chameleon

Chameleon Commit Details

Date:2010-02-21 08:56:46 (14 years 1 month ago)
Author:Rekursor
Commit:100
Parents: 99
Message:Fixed a var typo in the spd fingerprint detection section.
Changes:
M/trunk/i386/libsaio/spd.c
M/trunk/i386/libsaio/mem.c

File differences

trunk/i386/libsaio/spd.c
9292
9393
9494
95
95
9696
9797
9898
return vendorMap[i].name;
}
/* OK there is no vendor id here lets try to match the partnum if it exists */
if (strstr(slot->Vendor,"GU332") == slot->Vendor) // Unifosa fingerprint
if (strstr(slot->PartNo,"GU332") == slot->PartNo) // Unifosa fingerprint
return "Unifosa";
return "NoName";
}
trunk/i386/libsaio/mem.c
7272
7373
7474
75
75
7676
7777
7878
......
134134
135135
136136
137
138
139
140
137141
dmihdr;
dmihdr = FindNextDmiTableOfType(i, 4)) {
sprintf(title,"Table (type %d) :" , i);
dumpPhysAddr(title, dmihdr, dmihdr->length+16);
dumpPhysAddr(title, dmihdr, dmihdr->length+32);
}
}
Platform.RAM.DIMM[i].Frequency = memInfo[i]->currentSpeed; // favor real overclocked speed if any
i++;
}
#if 1
dumpAllTablesOfType(17);
getc();
#endif
}

Archive Download the corresponding diff file

Revision: 100