diff options
| author | Anurag Chouhan <achouhan@codeaurora.org> | 2016-02-18 18:00:46 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-03-24 11:57:39 -0700 |
| commit | fb54ab0eac58d30a0ea9ae60628a87e3ea2edf1c (patch) | |
| tree | 03c40a2718f7cad2658d6ac08fbc774dbba2e2c8 /core/utils | |
| parent | ffb2154eff31cff255932fa9e4b314850cf5a950 (diff) | |
qcacld-3.0: Add QDF status
Replace CDF status with QDF status
Change-Id: I7170c8ae4c5bd97a8f0f383af637bb2ec312f082
CRs-Fixed: 981188
Diffstat (limited to 'core/utils')
| -rw-r--r-- | core/utils/logging/inc/wlan_logging_sock_svc.h | 1 | ||||
| -rw-r--r-- | core/utils/pktlog/pktlog_ac.c | 4 | ||||
| -rw-r--r-- | core/utils/ptt/inc/wlan_ptt_sock_svc.h | 1 | ||||
| -rw-r--r-- | core/utils/ptt/src/wlan_ptt_sock_svc.c | 1 |
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> |
