summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H
diff options
context:
space:
mode:
authorZane Shelley <zshelle@us.ibm.com>2017-01-31 17:06:42 -0600
committerZane C. Shelley <zshelle@us.ibm.com>2017-02-15 12:42:07 -0500
commita16072bf583c8f01ba17012864bc16c2c9f67371 (patch)
tree068fa6ed8c72cb993a606c49241b59fe5af4428b /src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H
parent80e0e704d50115b31417655e82164b546b5faac1 (diff)
downloadblackbird-hostboot-a16072bf583c8f01ba17012864bc16c2c9f67371.tar.gz
blackbird-hostboot-a16072bf583c8f01ba17012864bc16c2c9f67371.zip
PRD: Removed BIT_STRING_CLASS alias
Change-Id: I30b7e7a255c61734c688356c6646a0a04c32f424 RTC: 167819 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35696 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com> Reviewed-by: Brian J. Stegmiller <bjs@us.ibm.com> Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36448 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Diffstat (limited to 'src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H')
-rw-r--r--src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H b/src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H
index 95cd9dc7e..be34884a3 100644
--- a/src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H
+++ b/src/usr/diag/prdf/common/framework/register/prdfRegisterCache.H
@@ -5,7 +5,9 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012,2014 */
+/* Contributors Listed Below - COPYRIGHT 2012,2017 */
+/* [+] 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. */
@@ -33,7 +35,7 @@
#include <prdfScomRegisterAccess.H>
#include <prdfTargetFwdRef.H>
-class BIT_STRING_CLASS;
+class BitString;
namespace PRDF
{
@@ -76,7 +78,7 @@ class RegDataCache
* @param i_reg Pointer to register to be read.
* @return A reference to the data buffer associated with the register.
*/
- BIT_STRING_CLASS & read( ExtensibleChip * i_chip,
+ BitString & read( ExtensibleChip * i_chip,
const SCAN_COMM_REGISTER_CLASS * i_reg );
/**
@@ -97,7 +99,7 @@ class RegDataCache
* @param i_pRegister base part of register entry to be queried in cache.
* @return pointer to cache entry associated with a given register
*/
- BIT_STRING_CLASS * queryCache( ExtensibleChip* i_pChip,
+ BitString * queryCache( ExtensibleChip* i_pChip,
const SCAN_COMM_REGISTER_CLASS * i_pRegister )const;
/**
* @brief Queries if a specific entry exist in cache.
@@ -105,11 +107,11 @@ class RegDataCache
* @return pointer to cache entry associated with a given register
*/
- BIT_STRING_CLASS * queryCache(
+ BitString * queryCache(
const ScomRegisterAccess & i_scomAccessKey )const;
private: // data
- typedef std::map<ScomRegisterAccess, BIT_STRING_CLASS *> CacheDump;
+ typedef std::map<ScomRegisterAccess, BitString *> CacheDump;
CacheDump iv_cachedRead;
};
OpenPOWER on IntegriCloud