diff options
author | CamVan Nguyen <ctnguyen@us.ibm.com> | 2012-05-22 08:44:39 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-05-30 10:26:38 -0500 |
commit | 7b99c2041cfe126bb85325a3d18ca69d279f54ad (patch) | |
tree | b249b0bf4773e2677ec8620eab3074e8e1acb310 /src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H | |
parent | 99d1dab56d4e067cb4ee4b089cd3456acba6a89c (diff) | |
download | blackbird-hostboot-7b99c2041cfe126bb85325a3d18ca69d279f54ad.tar.gz blackbird-hostboot-7b99c2041cfe126bb85325a3d18ca69d279f54ad.zip |
SCOM Initfile: Support for associated attributes.
Change-Id: Ie86bce0abaa12b986a7858723625c8e305a899d9
RTC: 41742
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1093
Tested-by: Jenkins Server
Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H')
-rw-r--r-- | src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H b/src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H index 63b1dc218..8ffba1cc8 100644 --- a/src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H +++ b/src/include/usr/hwpf/hwp/fapiHwpExecInitFile.H @@ -33,6 +33,7 @@ * camvanng 09/29/2011 Created. * andrewg 11/16/2011 Refactor includes with initfile compiler * camvanng 11/16/2011 Define function pointer to HWP + * camvanng 05/07/2012 Support for associated target attributes * */ @@ -49,17 +50,17 @@ extern "C" //Provided for platforms that need to cast a generic function pointer into a //function pointer of the correct type to call the HWP. -typedef fapi::ReturnCode (*fapiHwpExecInitFile_FP_t)(const fapi::Target & i_Target, +typedef fapi::ReturnCode (*fapiHwpExecInitFile_FP_t)(const std::vector<fapi::Target> & i_target, const char * i_file); /** * @brief HWP to execute an initfile. * -* @param[in] i_chip Reference to target chip +* @param[in] i_target Reference to std::vector of targets * @param[in] i_file filename of binary initfile * * @return ReturnCode */ -fapi::ReturnCode fapiHwpExecInitFile(const fapi::Target & i_Target, +fapi::ReturnCode fapiHwpExecInitFile(const std::vector<fapi::Target> & i_target, const char * i_file); } // extern "C" |