diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-09-20 17:33:50 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-09-25 14:12:27 +0000 |
commit | dd35e2c8a9ee7e1d9b2442b7059d8f9de6256da5 (patch) | |
tree | 1638e5941228f05fc249a65ca3c023f57f83bdd8 /src/mainboard/gigabyte/ma785gm | |
parent | ae7bd1eb23d878d22a2473bd61440377dff77df4 (diff) | |
download | coreboot-dd35e2c8a9ee7e1d9b2442b7059d8f9de6256da5.tar.xz |
mb: Use 'unsigned int' to bare use of 'unsigned'
Change-Id: I3a8e077656df02912b4e67c3947bd5af054a18bf
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28701
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/gigabyte/ma785gm')
-rw-r--r-- | src/mainboard/gigabyte/ma785gm/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/gigabyte/ma785gm/romstage.c b/src/mainboard/gigabyte/ma785gm/romstage.c index 98bc00fd03..680d279077 100644 --- a/src/mainboard/gigabyte/ma785gm/romstage.c +++ b/src/mainboard/gigabyte/ma785gm/romstage.c @@ -52,7 +52,7 @@ #define GPIO_DEV PNP_DEV(0x2e, IT8718F_GPIO) void activate_spd_rom(const struct mem_controller *ctrl); -int spd_read_byte(unsigned device, unsigned address); +int spd_read_byte(unsigned int device, unsigned int address); extern struct sys_info sysinfo_car; void activate_spd_rom(const struct mem_controller *ctrl) { } |