summaryrefslogtreecommitdiffstats
path: root/src/import/hwpf/fapi2/include/plat/target.H
diff options
context:
space:
mode:
authorThi Tran <thi@us.ibm.com>2019-01-07 10:51:11 -0600
committerSachin Gupta <sgupta2m@in.ibm.com>2019-01-10 21:43:10 -0600
commit32acc42c886da2d2b894bb852e5690205b08b4d4 (patch)
treed43c4bcc3b6c9512dee150e67a93c98ed24ec126 /src/import/hwpf/fapi2/include/plat/target.H
parent40778a92810f9d7de24ef18083412b9f2574c8f6 (diff)
downloadtalos-sbe-32acc42c886da2d2b894bb852e5690205b08b4d4.tar.gz
talos-sbe-32acc42c886da2d2b894bb852e5690205b08b4d4.zip
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 <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-by: Matt K. Light <mklight@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70175 Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'src/import/hwpf/fapi2/include/plat/target.H')
-rw-r--r--src/import/hwpf/fapi2/include/plat/target.H4
1 files changed, 2 insertions, 2 deletions
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<T, V>& 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);
}
///
OpenPOWER on IntegriCloud