qcacmn: Correct the return types of functions in HIF component

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

Change-Id: I806407dd0596cd03500242d97ca8220a7beb6c55
CRs-Fixed: 2734818
这个提交包含在:
Shashikala Prabhu
2020-07-17 12:58:53 +05:30
提交者 snandini
父节点 cb2acc0ea0
当前提交 ba0276b572
修改 11 个文件,包含 77 行新增54 行删除

查看文件

@@ -426,8 +426,9 @@ static inline void hif_record_event(struct hif_opaque_softc *hif_ctx,
event.tp = tp;
event.type = type;
return hif_hist_record_event(hif_ctx, &event,
intr_grp_id);
hif_hist_record_event(hif_ctx, &event, intr_grp_id);
return;
}
#else