summaryrefslogtreecommitdiffstats
path: root/src/usr/hwas
diff options
context:
space:
mode:
authorRichard J. Knight <rjknight@us.ibm.com>2015-02-19 19:13:17 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2015-02-25 08:46:01 -0600
commitd8695b5f685e0ed2de669892e8f33eb1164ca364 (patch)
tree1f2cb637f78c2229506bbe47b53a23f5e88fa165 /src/usr/hwas
parentdb33d79e8497b59a0add7c74be2f2251f4cd0c1e (diff)
downloadtalos-hostboot-d8695b5f685e0ed2de669892e8f33eb1164ca364.tar.gz
talos-hostboot-d8695b5f685e0ed2de669892e8f33eb1164ca364.zip
Updates to support serverwiz2 sensor format
Change-Id: I2518f6e78197f8dc329641e38264a7878060509d Depends-on: I09c95f470ca4748eeed568b71dc1c8b6e1c3ab76 RTC:124008 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/15853 Tested-by: Jenkins Server Reviewed-by: WILLIAM G. HOFFA <wghoffa@us.ibm.com> Reviewed-by: Brian H. Horton <brianh@linux.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwas')
-rw-r--r--src/usr/hwas/hwasPlatCallout.C10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/hwas/hwasPlatCallout.C b/src/usr/hwas/hwasPlatCallout.C
index 42df78b7d..0f15082a7 100644
--- a/src/usr/hwas/hwasPlatCallout.C
+++ b/src/usr/hwas/hwasPlatCallout.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2013,2014 */
+/* Contributors Listed Below - COPYRIGHT 2013,2015 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -203,18 +203,18 @@ errlHndl_t platHandleClockCallout(
TARGETING::TargetHandle_t pTarget = parentList[0];
// Get associated target
- TARGETING::ATTR_TYPE_type associatedType = TARGETING::TYPE_NA;
+ TARGETING::ENTITY_ID associatedType = TARGETING::ENTITY_ID_NA;
switch(i_clockType)
{
case TODCLK_TYPE:
- associatedType = TARGETING::TYPE_OSC;
+ associatedType = TARGETING::ENTITY_ID_TOD_CLOCK;
break;
case MEMCLK_TYPE:
case OSCREFCLK_TYPE:
- associatedType = TARGETING::TYPE_OSCREFCLK;
+ associatedType = TARGETING::ENTITY_ID_REF_CLOCK;
break;
case OSCPCICLK_TYPE:
- associatedType = TARGETING::TYPE_OSCPCICLK;
+ associatedType = TARGETING::ENTITY_ID_PCI_CLOCK;
break;
default:
assert(0,"Bug! Caller supplied illegal clock type. "
OpenPOWER on IntegriCloud