From 32acc42c886da2d2b894bb852e5690205b08b4d4 Mon Sep 17 00:00:00 2001 From: Thi Tran Date: Mon, 7 Jan 2019 10:51:11 -0600 Subject: Change target types to 64-bit and add P10 target types This is done in P9 because Cronus requires common FAPI2 target types for both P9 and P10. Change-Id: I5641fd2f8fefcb5a36b12a3d214ee57dbc4f887e Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70142 Tested-by: FSP CI Jenkins Tested-by: Jenkins Server Tested-by: HWSV CI Tested-by: PPE CI Tested-by: Hostboot CI Reviewed-by: Joseph J. McGill Reviewed-by: Matt K. Light Reviewed-by: Jennifer A. Stofer Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70175 Reviewed-by: Sachin Gupta --- src/import/hwpf/fapi2/include/plat/target.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/import/hwpf/fapi2/include/plat/target.H') diff --git a/src/import/hwpf/fapi2/include/plat/target.H b/src/import/hwpf/fapi2/include/plat/target.H index b80aacc2..2604b980 100644 --- a/src/import/hwpf/fapi2/include/plat/target.H +++ b/src/import/hwpf/fapi2/include/plat/target.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER sbe Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015,2016 */ +/* Contributors Listed Below - COPYRIGHT 2015,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -203,7 +203,7 @@ template< TargetType T, typename V > inline void toString(const Target& i_target, char* i_buffer, size_t i_bsize) { - snprintf(i_buffer, i_bsize, "Target 0x%lx/0x%x", i_target.get(), T); + snprintf(i_buffer, i_bsize, "Target 0x%lX/0x%.16lX", i_target.get(), T); } /// -- cgit v1.2.1