Remove redundant new line in PE logs

Remove \n in log messages as VOS_TRACE introduces the new line at
the end of log message.

Change-Id: I26815abbba3ccbc4281c8981e4a5b68d5cd68234
CRs-Fixed: 441138
diff --git a/CORE/MAC/src/include/parserApi.h b/CORE/MAC/src/include/parserApi.h
index 10d5383..d588ab6 100644
--- a/CORE/MAC/src/include/parserApi.h
+++ b/CORE/MAC/src/include/parserApi.h
@@ -288,7 +288,7 @@
         if ( eSIR_SUCCESS != (nStatus) )                             \
         {                                                            \
             dot11fLog( (pMac), LOGP, FL("Failed to retrieve "        \
-                                        #nItem " from CFG (%d).\n"), \
+                                        #nItem " from CFG (%d)."), \
                        (nStatus) );                                  \
             return nStatus;                                          \
         }                                                            \
@@ -299,7 +299,7 @@
         if ( eSIR_SUCCESS != (nStatus) )                             \
         {                                                            \
             dot11fLog( (pMac), LOGP, FL("Failed to retrieve "        \
-                                        #nItem " from CFG (%d).\n"), \
+                                        #nItem " from CFG (%d)."), \
                        (nStatus) );                                  \
             return;                                                  \
         }                                                            \
@@ -311,7 +311,7 @@
         if ( eSIR_SUCCESS != (nStatus) )                                \
         {                                                               \
             dot11fLog( (pMac), LOGP, FL("Failed to retrieve "           \
-                                        #nItem " from CFG (%d).\n"),    \
+                                        #nItem " from CFG (%d)."),    \
                        (nStatus) );                                     \
             return nStatus;                                             \
         }                                                               \
@@ -324,7 +324,7 @@
         if ( eSIR_SUCCESS != (nStatus) )                                \
         {                                                               \
             dot11fLog( (pMac), LOGP, FL("Failed to retrieve "           \
-                                        #nItem " from CFG (%d).\n"),    \
+                                        #nItem " from CFG (%d)."),    \
                        (nStatus) );                                     \
             return;                                                     \
         }                                                               \