Attn: Procedure specific error codes in error logs

When creating error logs for attention handler failures an error code is
presented in the error log. Make these specific to the attention handler
procedure that encountered the error.

Signed-off-by: Ben Tyner <ben.tyner@ibm.com>
Change-Id: Ic65343c2cc231ad6340cb5182a1fa75da7c76bcb
diff --git a/attn/ti_handler.cpp b/attn/ti_handler.cpp
index fc58d49..c1e2d2e 100644
--- a/attn/ti_handler.cpp
+++ b/attn/ti_handler.cpp
@@ -45,7 +45,7 @@
     {
         // TI data was not available This should not happen since we provide
         // a default TI info in the case where get TI info was not successful.
-        eventAttentionFail(ATTN_INFO_NULL);
+        eventAttentionFail((int)AttnSection::tiHandler | ATTN_INFO_NULL);
         rc = RC_NOT_HANDLED;
     }
 
@@ -100,7 +100,7 @@
     {
         // TI data was not available This should not happen since we provide
         // a default TI info in the case where get TI info was not successful.
-        eventAttentionFail(ATTN_INFO_NULL);
+        eventAttentionFail((int)AttnSection::handlePhypTi | ATTN_INFO_NULL);
     }
 }
 
@@ -257,7 +257,7 @@
     {
         // TI data was not available This should not happen since we provide
         // a default TI info in the case where get TI info was not successful.
-        eventAttentionFail(ATTN_INFO_NULL);
+        eventAttentionFail((int)AttnSection::handleHbTi | ATTN_INFO_NULL);
     }
 }