On Mon, Oct 13, 2008 at 3:26 PM, Peter Stuge peter@stuge.se wrote:
Corey Osgood wrote:
u8 smbus_read_byte(u16 dimm, u8 offset, u16 smbus_io_base)
..
dimm = (dimm << 1) | 1;
..
With it, my spd addresses are 0x50, 0x51, etc, without it, they'd be 0xa1, 0xa3, etc. Which would be preferred?
As others have said, the input to this function should be 0x50.
Alright, that was what I was thinking too. Thanks for the quick responses!
-Corey