Author: mjones Date: 2008-01-30 01:46:41 +0100 (Wed, 30 Jan 2008) New Revision: 567
Modified: coreboot-v3/southbridge/amd/cs5536/smbus_initram.c Log: V3 compilation errors: Fix spd_read_byte prototype.
Signed-off-by: Marc Jones marc.jones@amd.com Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: coreboot-v3/southbridge/amd/cs5536/smbus_initram.c =================================================================== --- coreboot-v3/southbridge/amd/cs5536/smbus_initram.c 2008-01-29 17:48:10 UTC (rev 566) +++ coreboot-v3/southbridge/amd/cs5536/smbus_initram.c 2008-01-30 00:46:41 UTC (rev 567) @@ -343,7 +343,7 @@ * @param address The address. * @return The data from the SMBus packet area or an error of 0xff (i.e. -1). */ -int spd_read_byte(u16 device, u8 address) +u8 spd_read_byte(u16 device, u8 address) { return smbus_read_byte(device, address); }