qcacmn: Fix the return type of the rx function

Receive function should return QDF_STATUS type

Change-Id: I420a117ff723e7bb880abd731ec34c96f526c85a
CRs-Fixed: 993414
This commit is contained in:
Dhanashri Atre
2016-03-31 11:53:53 -07:00
committed by Vishwajith Upendra
parent b16cf3028e
commit 0a485f1a58

View File

@@ -129,7 +129,7 @@ typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev,
* @data_vdev - handle to the OSIF virtual device object * @data_vdev - handle to the OSIF virtual device object
* @msdu_list - list of network buffers * @msdu_list - list of network buffers
*/ */
typedef int (*ol_txrx_rx_fp)(void *osif_dev, qdf_nbuf_t msdu_list); typedef QDF_STATUS (*ol_txrx_rx_fp)(void *osif_dev, qdf_nbuf_t msdu_list);
/** /**
* ol_txrx_rx_check_wai_fp - OSIF WAPI receive function * ol_txrx_rx_check_wai_fp - OSIF WAPI receive function