diff options
author | crgeddes <crgeddes@us.ibm.com> | 2016-11-09 16:48:23 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-11-14 21:31:37 -0500 |
commit | 7011329d47c30f6d2c6939bc1c8b9425d3eac87b (patch) | |
tree | 2ba2f3af05396da76e84c80e0cd27e6fc5a288ea /src/usr/sbeio | |
parent | 2da4b3794cb7ee133d1c4db6640aad99748ebf4b (diff) | |
download | talos-hostboot-7011329d47c30f6d2c6939bc1c8b9425d3eac87b.tar.gz talos-hostboot-7011329d47c30f6d2c6939bc1c8b9425d3eac87b.zip |
Ignore CHIP_OFFLINE pib error when scom is multicast
When a scom returns an error that says the chip was offline,
if it was a multicasted scom we expect this to happen so we can
ignore the error and continue
RTC:163898
Change-Id: Id9753eab70f78573f0c8d27a74aef62e5715e85c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/32455
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/sbeio')
-rw-r--r-- | src/usr/sbeio/sbe_scomAccess.C | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/usr/sbeio/sbe_scomAccess.C b/src/usr/sbeio/sbe_scomAccess.C index 63689685d..44c1ac37f 100644 --- a/src/usr/sbeio/sbe_scomAccess.C +++ b/src/usr/sbeio/sbe_scomAccess.C @@ -166,11 +166,8 @@ errlHndl_t getFifoScom(TARGETING::Target * i_target, (uint32_t *)&l_fifoRequest, (uint32_t *)&l_fifoResponse, sizeof(fifoGetScomResponse)); - // return data if no error - if (!errl) - { - o_data = l_fifoResponse.data; - } + //always return data even if there is an error + o_data = l_fifoResponse.data; } while (0); |