Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68234 )
Change subject: util/amdfwread: Fix cookie error message ......................................................................
util/amdfwread: Fix cookie error message
Change-Id: I580675fcbf8c5058ade371c6b9edb7b7070a78a3 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M util/amdfwtool/amdfwread.c 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/34/68234/1
diff --git a/util/amdfwtool/amdfwread.c b/util/amdfwtool/amdfwread.c index c9da3d8..d6dc1e2 100644 --- a/util/amdfwtool/amdfwread.c +++ b/util/amdfwtool/amdfwread.c @@ -82,7 +82,7 @@ /* Ensure that we have a PSP directory */ if (header->cookie != expected_cookie) { ERR("Invalid PSP header cookie value found: 0x%x, expected: 0x%x\n", - expected_cookie, header->cookie); + header->cookie, expected_cookie); return 1; }