analyzer: Modify create pel to use util

Modified analyzer create pel to use the util library base create pel
functionality. The specific pel content collection and creation remains
in the analyzer create pel function.

Signed-off-by: Ben Tyner <ben.tyner@ibm.com>
Change-Id: I5529431fc649e741e52cc093f33806797da35e76
diff --git a/analyzer/analyzer_main.cpp b/analyzer/analyzer_main.cpp
index b89124e..d4ad726 100644
--- a/analyzer/analyzer_main.cpp
+++ b/analyzer/analyzer_main.cpp
@@ -38,7 +38,7 @@
  * @param i_servData  Data regarding service actions gathered during analysis.
  * @return The platform log ID. Will return zero if no PEL is generated.
  */
-uint32_t createPel(const ServiceData& i_servData);
+uint32_t commitPel(const ServiceData& i_servData);
 
 //------------------------------------------------------------------------------
 
@@ -184,7 +184,7 @@
         }
 
         // Create and commit a PEL.
-        o_plid = createPel(servData);
+        o_plid = commitPel(servData);
 
         if (0 == o_plid)
         {