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/fapiTestHwp.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/fapiTestHwp.H')
-rw-r--r-- | src/include/usr/hwpf/hwp/fapiTestHwp.H | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/include/usr/hwpf/hwp/fapiTestHwp.H b/src/include/usr/hwpf/hwp/fapiTestHwp.H index 12349e737..d1451d493 100644 --- a/src/include/usr/hwpf/hwp/fapiTestHwp.H +++ b/src/include/usr/hwpf/hwp/fapiTestHwp.H @@ -34,14 +34,17 @@ * mjjones 06/28/2011 Updated comment * mjjones 08/11/2011 Removed Clock HWP * mjjones 10/17/2011 Added func pointer + * camvanng 05/07/2012 Support for associated + * attributes */ #ifndef FAPITESTHW_H_ #define FAPITESTHW_H_ #include <fapi.H> +#include <vector> -typedef fapi::ReturnCode (*hwpInitialTest_FP_t)(const fapi::Target &); +typedef fapi::ReturnCode (*hwpInitialTest_FP_t)(const std::vector<fapi::Target> &); extern "C" { @@ -49,11 +52,11 @@ extern "C" /** * @brief A simple HWP. Can easily be modified by HW dev team for test * - * @param[in] i_chip Reference to target chip + * @param[in] i_target Reference to std::vector of targets * * @return ReturnCode */ -fapi::ReturnCode hwpInitialTest(const fapi::Target & i_chip); +fapi::ReturnCode hwpInitialTest(const std::vector<fapi::Target> & i_target); } |