aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cs5536/early_smbus.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-09-21 11:42:09 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-10-24 10:01:55 +0000
commit78d338ccb9ca9d03e516c27beb3724be38d38ecf (patch)
tree060bbd99d4974a8250b7e19040d67518b2072623 /src/southbridge/amd/cs5536/early_smbus.c
parent17ad4598e9d3d302cc45c86a8e11aac62928c83c (diff)
sb/amd: Use 'unsigned int' to bare use of 'unsigned'
Change-Id: I05f9ea97ea80ac7a8f34845c59bd66e424ba2991 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/28709 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/southbridge/amd/cs5536/early_smbus.c')
-rw-r--r--src/southbridge/amd/cs5536/early_smbus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/cs5536/early_smbus.c b/src/southbridge/amd/cs5536/early_smbus.c
index ed2b9429b4..a1cf50bb15 100644
--- a/src/southbridge/amd/cs5536/early_smbus.c
+++ b/src/southbridge/amd/cs5536/early_smbus.c
@@ -33,7 +33,7 @@ void cs5536_enable_smbus(void)
}
-int smbus_read_byte(unsigned device, unsigned address)
+int smbus_read_byte(unsigned int device, unsigned int address)
{
return do_smbus_read_byte(SMBUS_IO_BASE, device, address);
}