aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/psp_verstage
diff options
context:
space:
mode:
authorMartin Roth <martinroth@chromium.org>2020-10-01 15:39:42 -0600
committerFelix Held <felix-coreboot@felixheld.de>2020-10-30 13:04:01 +0000
commitfdcbae0a9bec7adb4f0db3d5479813be42b4f323 (patch)
tree3d03b4330826666acf0d8629b78898369c3e0db4 /src/soc/amd/picasso/psp_verstage
parent902518e983d5aa3c1fdb5dfd91ca1fb468117191 (diff)
vc/amd/fsp: Update bl_errorcodes_public.h
Replace the initial bl_errorcodes_public.h (a temporary, minimal version) with the full version released by AMD. BUG=None TEST=Build BRANCH=Zork Signed-off-by: Martin Roth <martinroth@chromium.org> Change-Id: I82585c74d74139a96419b9bffe1df3b8c344eb5f Reviewed-on: https://review.coreboot.org/c/coreboot/+/45943 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/picasso/psp_verstage')
-rw-r--r--src/soc/amd/picasso/psp_verstage/fch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/picasso/psp_verstage/fch.c b/src/soc/amd/picasso/psp_verstage/fch.c
index 7d0b856545..b813770b4a 100644
--- a/src/soc/amd/picasso/psp_verstage/fch.c
+++ b/src/soc/amd/picasso/psp_verstage/fch.c
@@ -124,13 +124,13 @@ static uint32_t map_fch_devices(void)
bar_map[i].set_bar(bar);
}
- return BL_UAPP_OK;
+ return BL_OK;
}
uint32_t unmap_fch_devices(void)
{
void *bar;
- uint32_t err, rtn = BL_UAPP_OK;
+ uint32_t err, rtn = BL_OK;
unsigned int i;
for (i = 0; i < ARRAY_SIZE(bar_map); ++i) {