diff options
author | Thi Tran <thi@us.ibm.com> | 2014-07-07 09:42:02 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-07-14 13:51:45 -0500 |
commit | 1ae25b625d1281283bf125ab936d886c7c4c5f4a (patch) | |
tree | ec345b8a9c14a52ba5a62c98d74705436f769a0b /src/usr/hwpf/hwp/fapiHwpExecInitFile.C | |
parent | 39b69ea39cf0af1d83807db4f862a921fe52139e (diff) | |
download | talos-hostboot-1ae25b625d1281283bf125ab936d886c7c4c5f4a.tar.gz talos-hostboot-1ae25b625d1281283bf125ab936d886c7c4c5f4a.zip |
SW265478: INITPROC: FSP - FAPI updates needed so file versions will appear in th
CQ:SW265478
Change-Id: I8a2f69c5f5220f0e6c8f518d8abef3c40a6e5547
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/11992
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Tested-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/11993
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/hwp/fapiHwpExecInitFile.C')
-rw-r--r-- | src/usr/hwpf/hwp/fapiHwpExecInitFile.C | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/usr/hwpf/hwp/fapiHwpExecInitFile.C b/src/usr/hwpf/hwp/fapiHwpExecInitFile.C index 359e7b088..1bb1bb507 100644 --- a/src/usr/hwpf/hwp/fapiHwpExecInitFile.C +++ b/src/usr/hwpf/hwp/fapiHwpExecInitFile.C @@ -5,7 +5,9 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2014 */ +/* Contributors Listed Below - COPYRIGHT 2011,2014 */ +/* [+] International Business Machines Corp. */ +/* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ @@ -25,7 +27,7 @@ * * @brief Implements a Hardware Procedure to execute an initfile. */ - +// $Id: fapiHwpExecInitFile.C,v 1.21 2014/06/30 16:48:42 thi Exp $ /* * Change Log ****************************************************************** * Flag Defect/Feature User Date Description @@ -66,6 +68,7 @@ * SW187788 mww 02/27/2013 Add minimal succinct trace * SW195717 mww 04/22/2013 Add function to dump ffdc * and trace. + * SW251791 muqahmed 03/14/2014 Fixed compile warning */ #include <fapiHwpExecInitFile.H> @@ -262,7 +265,7 @@ public: iv_attrSymbolTableSize( 0 ), iv_pLitSymbolTableAddr( NULL ), - iv_litSymbolTableSize( NULL ), + iv_litSymbolTableSize( 0 ), iv_pScomSectionAddr( NULL ), iv_scomSectionSize( 0 ), @@ -564,7 +567,7 @@ void InitFileStats::dump() iv_litSymbolTableSize ); for ( int i=0; i<iv_litSymbolTableSize; i++ ) { - FAPI_IMP( " 0xX%03x 0x%08x", + FAPI_IMP( " 0xX%03x 0x%08llx", i+1, iv_pLitSymbolTableAddr[i] ); } |