summaryrefslogtreecommitdiffstats
path: root/src/usr/runtime
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2014-07-17 17:24:40 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-07-18 07:54:16 -0500
commitec21c8af25e54974e4af24c5e5acb1cedc1ae5d4 (patch)
tree696853636b99c7fa9be743cd99abcae8e424d70d /src/usr/runtime
parent585873929bde568dfe22c11695787286382afbda (diff)
downloadtalos-hostboot-ec21c8af25e54974e4af24c5e5acb1cedc1ae5d4.tar.gz
talos-hostboot-ec21c8af25e54974e4af24c5e5acb1cedc1ae5d4.zip
Fix references to spiraH/S
Change-Id: Ib1f715469e8d84e28331b6406f4bf09bd8094371 CQ: SW269587 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/12285 Tested-by: Jenkins Server Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com> Reviewed-by: Dean Sanner <dsanner@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/runtime')
-rw-r--r--src/usr/runtime/hdatservice.C22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/usr/runtime/hdatservice.C b/src/usr/runtime/hdatservice.C
index 334fb76f7..fd79e222f 100644
--- a/src/usr/runtime/hdatservice.C
+++ b/src/usr/runtime/hdatservice.C
@@ -5,7 +5,9 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012,2014 */
+/* Contributors Listed Below - COPYRIGHT 2012,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. */
@@ -880,7 +882,7 @@ errlHndl_t hdatService::getHostDataSection( SectionId i_section,
errhdl = getSpiraTupleVA(tuple, base_addr);
if( errhdl ) { break; }
- hdatHDIF_t* ipl_parms = reinterpret_cast<hdatHDIF_t*>
+ hdatHDIF_t* ipl_parms = reinterpret_cast<hdatHDIF_t*>
(base_addr);
TRACUCOMP( g_trac_runtime, "ipl_parms=%p", ipl_parms );
@@ -911,9 +913,9 @@ errlHndl_t hdatService::getHostDataSection( SectionId i_section,
// Find the right tuple and verify it makes sense
hdat5Tuple_t* tuple = NULL;
- if( iv_spiraS )
+ if( iv_spiraH )
{
- tuple = &(iv_spiraS->hdatDataArea[SPIRAH_MS_DUMP_SRC_TBL]);
+ tuple = &(iv_spiraH->hdatDataArea[SPIRAH_MS_DUMP_SRC_TBL]);
}
else if( unlikely(iv_spiraL != NULL) )
{
@@ -939,9 +941,9 @@ errlHndl_t hdatService::getHostDataSection( SectionId i_section,
// Find the right tuple and verify it makes sense
hdat5Tuple_t* tuple = NULL;
- if( iv_spiraS )
+ if( iv_spiraH )
{
- tuple = &(iv_spiraS->hdatDataArea[SPIRAH_MS_DUMP_DST_TBL]);
+ tuple = &(iv_spiraH->hdatDataArea[SPIRAH_MS_DUMP_DST_TBL]);
}
else if( unlikely(iv_spiraL != NULL) )
{
@@ -967,9 +969,9 @@ errlHndl_t hdatService::getHostDataSection( SectionId i_section,
// Find the right tuple and verify it makes sense
hdat5Tuple_t* tuple = NULL;
- if( iv_spiraS )
+ if( iv_spiraH )
{
- tuple = &(iv_spiraS->hdatDataArea[SPIRAH_MS_DUMP_RSLT_TBL]);
+ tuple = &(iv_spiraH->hdatDataArea[SPIRAH_MS_DUMP_RSLT_TBL]);
}
else if( unlikely(iv_spiraL != NULL) )
{
@@ -1311,9 +1313,9 @@ errlHndl_t hdatService::updateHostDataSectionActual( SectionId i_section,
// Find the right tuple and verify it makes sense
hdat5Tuple_t* tuple = NULL;
- if( iv_spiraS )
+ if( iv_spiraH )
{
- tuple = &(iv_spiraS->hdatDataArea[SPIRAH_MS_DUMP_RSLT_TBL]);
+ tuple = &(iv_spiraH->hdatDataArea[SPIRAH_MS_DUMP_RSLT_TBL]);
}
else if( unlikely(iv_spiraL != NULL) )
{
OpenPOWER on IntegriCloud