From 45ad4f041bcf69f7988d87ae390977c10203b1a8 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Thu, 31 Jan 2019 19:24:04 +0200 Subject: usbdebug: Use fixed size field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The structure is placed inside CBMEM, one should use types with fixed size. Seems we prefer to prepare for 64-bit builds even for MMIO pointers. Change-Id: I60382664a53650b225abc1f77c87ed4e121d429e Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/31182 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber --- src/arch/x86/car.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch') diff --git a/src/arch/x86/car.ld b/src/arch/x86/car.ld index 1b0d996b8a..0d0d5852d0 100644 --- a/src/arch/x86/car.ld +++ b/src/arch/x86/car.ld @@ -68,7 +68,7 @@ #endif _car_ehci_dbg_info_start = .; /* Reserve sizeof(struct ehci_dbg_info). */ - . += 88; + . += 80; _car_ehci_dbg_info_end = .; /* _car_global_start and _car_global_end provide symbols to per-stage * variables that are not shared like the timestamp and the pre-ram -- cgit v1.2.3