On Nov 27, 2007 9:00 AM, Jordan Crouse jordan.crouse@amd.com wrote:
In yourcase, faking it out is the right move - and for those systems that do have SPD, your spd_read_byte can just call into smbus_read_byte, perhaps through some clever #defines or other such thing.
dang, we're clever :
int spd_read_byte(u16 device, u8 address) { return smbus_read_byte(device, address); } "southbridge/amd/cs5536/smbus_initram.c" 349L, 9276C
so we're good on that score.
ron