qcacmn: Correct the return types of HIF functions

A few functions in HIF component returns QDF status value with return
type as  non QDF STATUS. For such functions, update the return type as
QDF_STATUS.

Change-Id: I69644a2206266ffe2c2d105056f9fec452f5d972
CRs-Fixed: 2734818
This commit is contained in:
Shashikala Prabhu
2020-07-14 18:16:24 +05:30
committed by snandini
parent 30f2d61e6d
commit b87eec2b53
9 changed files with 84 additions and 61 deletions

View File

@@ -2068,7 +2068,8 @@ hif_send_head(struct hif_opaque_softc *hif_ctx,
struct CE_handle *ce_hdl = pipe_info->ce_hdl;
int bytes = nbytes, nfrags = 0;
struct ce_sendlist sendlist;
int status, i = 0;
int i = 0;
QDF_STATUS status;
unsigned int mux_id = 0;
if (nbytes > qdf_nbuf_len(nbuf)) {