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:

committed by
snandini

parent
30f2d61e6d
commit
b87eec2b53
@@ -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)) {
|
||||
|
Reference in New Issue
Block a user