vendorcode/amd/f14: Fix ignored argument in IDS_HDT_CONSOLE
String format required two arguments however those were packaged in ( , ) so the left one was ignored. Change-Id: I59698319d5ff4215f296356147b4e22229cc9245 Signed-off-by: Łukasz Dobrowolski <lukasz@dobrowolski.io> Reviewed-on: https://review.coreboot.org/17118 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
571c230252
commit
4291e8b6ca
|
@ -641,7 +641,9 @@ S3SaveDebugPrintHexArray (
|
|||
break;
|
||||
case AccessWidth64:
|
||||
case AccessS3SaveWidth64:
|
||||
IDS_HDT_CONSOLE (S3_TRACE, "0x%08x%08x", ((UINT32*) ((UINT64*)Array + Index)[1], ((UINT32*) ((UINT64*)Array + Index))[0]));
|
||||
IDS_HDT_CONSOLE(S3_TRACE, "0x%08x%08x",
|
||||
((UINT32 *) ((UINT64 *)Array + Index))[1],
|
||||
((UINT32 *) ((UINT64 *)Array + Index))[0]);
|
||||
break;
|
||||
default:
|
||||
IDS_ERROR_TRAP;
|
||||
|
|
Loading…
Reference in New Issue