Update field types for Chip Data Files

Change-Id: I5cc76401f97121a1fa4f9cb669d7241113075d8b
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
diff --git a/src/isolator/hei_isolation_node.cpp b/src/isolator/hei_isolation_node.cpp
index e2bf61a..f5c58db 100644
--- a/src/isolator/hei_isolation_node.cpp
+++ b/src/isolator/hei_isolation_node.cpp
@@ -21,10 +21,10 @@
     const BitString* bs = rule_itr->second->getBitString(i_chip);
 
     // Ensure this BitString is not longer than the maximum bit field.
-    HEI_ASSERT(bs->getBitLen() <= (1 << (sizeof(RegisterBit_t) * 8)));
+    HEI_ASSERT(bs->getBitLen() <= (1 << (sizeof(BitPosition_t) * 8)));
 
     // Find all active bits for this rule.
-    for (RegisterBit_t bit = 0; bit < bs->getBitLen(); bit++)
+    for (BitPosition_t bit = 0; bit < bs->getBitLen(); bit++)
     {
         // Continue to the next bit if not active.
         if (!bs->isBitSet(bit))