summaryrefslogtreecommitdiff
path: root/core/utils
diff options
context:
space:
mode:
Diffstat (limited to 'core/utils')
-rw-r--r--core/utils/logging/inc/wlan_logging_sock_svc.h1
-rw-r--r--core/utils/pktlog/pktlog_ac.c4
-rw-r--r--core/utils/ptt/inc/wlan_ptt_sock_svc.h1
-rw-r--r--core/utils/ptt/src/wlan_ptt_sock_svc.c1
4 files changed, 2 insertions, 5 deletions
diff --git a/core/utils/logging/inc/wlan_logging_sock_svc.h b/core/utils/logging/inc/wlan_logging_sock_svc.h
index 5aa52459265f..d6c94930ba49 100644
--- a/core/utils/logging/inc/wlan_logging_sock_svc.h
+++ b/core/utils/logging/inc/wlan_logging_sock_svc.h
@@ -34,7 +34,6 @@
#define WLAN_LOGGING_SOCK_SVC_H
#include <wlan_nlink_srv.h>
-#include <cdf_status.h>
#include <qdf_status.h>
#include <cdf_trace.h>
#include <wlan_nlink_common.h>
diff --git a/core/utils/pktlog/pktlog_ac.c b/core/utils/pktlog/pktlog_ac.c
index 1632adbfd92f..dfde60ddd663 100644
--- a/core/utils/pktlog/pktlog_ac.c
+++ b/core/utils/pktlog/pktlog_ac.c
@@ -75,7 +75,7 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types,
WMI_CMD_ID cmd_id)
{
cds_msg_t msg = { 0 };
- CDF_STATUS status;
+ QDF_STATUS status;
struct ath_pktlog_wmi_params *param;
param = cdf_mem_malloc(sizeof(struct ath_pktlog_wmi_params));
@@ -92,7 +92,7 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types,
status = cds_mq_post_message(CDS_MQ_ID_WMA, &msg);
- if (status != CDF_STATUS_SUCCESS) {
+ if (status != QDF_STATUS_SUCCESS) {
cdf_mem_free(param);
return A_ERROR;
}
diff --git a/core/utils/ptt/inc/wlan_ptt_sock_svc.h b/core/utils/ptt/inc/wlan_ptt_sock_svc.h
index cc843856616b..c59b92fcef87 100644
--- a/core/utils/ptt/inc/wlan_ptt_sock_svc.h
+++ b/core/utils/ptt/inc/wlan_ptt_sock_svc.h
@@ -33,7 +33,6 @@
#define PTT_SOCK_SVC_H
#include <wlan_nlink_srv.h>
#include <cdf_types.h>
-#include <cdf_status.h>
#include <qdf_status.h>
#include <cdf_trace.h>
#include <wlan_nlink_common.h>
diff --git a/core/utils/ptt/src/wlan_ptt_sock_svc.c b/core/utils/ptt/src/wlan_ptt_sock_svc.c
index 409d3cfe24a3..dce3cfd80f80 100644
--- a/core/utils/ptt/src/wlan_ptt_sock_svc.c
+++ b/core/utils/ptt/src/wlan_ptt_sock_svc.c
@@ -32,7 +32,6 @@
#ifdef PTT_SOCK_SVC_ENABLE
#include <wlan_nlink_srv.h>
#include <cdf_types.h>
-#include <cdf_status.h>
#include <qdf_status.h>
#include <cdf_trace.h>
#include <wlan_nlink_common.h>