diff options
author | Angel Pons <th3fanbus@gmail.com> | 2024-04-12 17:23:59 +0200 |
---|---|---|
committer | Matt DeVillier <matt.devillier@gmail.com> | 2024-04-16 01:47:24 +0000 |
commit | 76a015946e43fb0dc62368ec07c3823c65332c4f (patch) | |
tree | 62bdd0bebc769d90e45531cf720bc36d7a4e6d1c /src/northbridge/intel | |
parent | 41d107019b6bcbdad80a1d76abca7a181fd339d5 (diff) |
nb/intel/haswell: Fix building BDW MRC.bin path with clang
Clang complains that the two enumerations are incompatible. However, the
values themselves are the same (0: mobile, 1: desktop, 5: ULT). So, cast
the function's return value to silence the warning.
Change-Id: If7b5e22e893e9f3f17a15197c65448fb782590f6
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81862
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel')
-rw-r--r-- | src/northbridge/intel/haswell/broadwell_mrc/raminit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/broadwell_mrc/raminit.c b/src/northbridge/intel/haswell/broadwell_mrc/raminit.c index b8a9416ff6..e7e9b634c8 100644 --- a/src/northbridge/intel/haswell/broadwell_mrc/raminit.c +++ b/src/northbridge/intel/haswell/broadwell_mrc/raminit.c @@ -331,7 +331,7 @@ void perform_raminit(const int s3resume) struct pei_data pei_data = { .pei_version = PEI_VERSION, - .board_type = get_pch_platform_type(), + .board_type = (enum board_type)get_pch_platform_type(), .usbdebug = CONFIG(USBDEBUG), .pciexbar = CONFIG_ECAM_MMCONF_BASE_ADDRESS, .smbusbar = CONFIG_FIXED_SMBUS_IO_BASE, |