wlan: trim the meta-information from logging packets

The 4 byte meta-information attached by firmware to
the logging packets is used to classify them into different
log types so that they can be displayed correctly. But the
logging applications do not expect the meta-information as
part of the payload, so we have to trim it out before passing
it to the user-space.

Change-Id: Iafa10c5dd3b027e83aa9cb6ac7f091400fc6bf82
CRs-Fixed: 823982
diff --git a/CORE/SVC/inc/wlan_logging_sock_svc.h b/CORE/SVC/inc/wlan_logging_sock_svc.h
index c171441..55a7073 100644
--- a/CORE/SVC/inc/wlan_logging_sock_svc.h
+++ b/CORE/SVC/inc/wlan_logging_sock_svc.h
@@ -45,6 +45,6 @@
 int wlan_logging_flush_pkt_queue(void);
 int wlan_logging_sock_deactivate_svc(void);
 int wlan_log_to_user(VOS_TRACE_LEVEL log_level, char *to_be_sent, int length);
-int wlan_queue_logpkt_for_app(vos_pkt_t *pPacket, uint8 pkt_type);
+int wlan_queue_logpkt_for_app(vos_pkt_t *pPacket, uint32 pkt_type);
 
 #endif /* WLAN_LOGGING_SOCK_SVC_H */