Clarify definition of chip checkstop

Previously, the ATTN_TYPE_CHECKSTOP associated with a signature was
synonymous with a system checkstop event. This is certainly true for
if a processor chip checkstops. However, this is not true if a connected
OCMB chip checkstops because it is possible in some cases for a system
to recover. To differentiate an OCMB chip checkstop from a system
checkstop they were previously reported as unit checkstops. With the
addition Odyssey OCMBs, which have ability to report both chip and unit
checkstops, we decided to fix the confusion and disassociate a chip
checkstop from a system checkstop. Now the signatures will properly
report the chip attention type and the signature filtering code has been
modified to simply associate only chip checkstops from processor chips
as system checkstop attentions.

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Iff9822ff8c9c0ae1afe84353010e94759dbdf49d
diff --git a/analyzer/analyzer_main.cpp b/analyzer/analyzer_main.cpp
index 1db3efe..24839eb 100644
--- a/analyzer/analyzer_main.cpp
+++ b/analyzer/analyzer_main.cpp
@@ -48,8 +48,8 @@
     const char* str = "";
     switch (i_type)
     {
-        case libhei::ATTN_TYPE_CHECKSTOP:
-            str = "CHECKSTOP";
+        case libhei::ATTN_TYPE_CHIP_CS:
+            str = "CHIP_CS";
             break;
         case libhei::ATTN_TYPE_UNIT_CS:
             str = "UNIT_CS";