|
@@ -226,10 +226,8 @@ void ol_tx_set_is_mgmt_over_wmi_enabled(uint8_t value)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -250,10 +248,8 @@ uint8_t ol_tx_get_is_mgmt_over_wmi_enabled(void)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return 0;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -2330,10 +2326,8 @@ static void ol_txrx_flush_cache_rx_queue(void)
|
|
|
struct ol_txrx_vdev_t *vdev;
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev)
|
|
@@ -3693,10 +3687,8 @@ static QDF_STATUS ol_txrx_wait_for_pending_tx(int timeout)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
struct ol_txrx_pdev_t *txrx_pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
- }
|
|
|
|
|
|
txrx_pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!txrx_pdev) {
|
|
@@ -4892,10 +4884,8 @@ static inline int ol_txrx_drop_nbuf_list(qdf_nbuf_t buf_list)
|
|
|
int num_dropped = 0;
|
|
|
qdf_nbuf_t buf, next_buf;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return 0;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -5098,10 +5088,8 @@ void ol_rx_data_process(struct ol_txrx_peer_t *peer,
|
|
|
*/
|
|
|
ol_txrx_rx_fp data_rx = NULL;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
goto drop_rx_buf;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if ((!peer) || (!pdev)) {
|
|
@@ -5331,7 +5319,6 @@ static void ol_txrx_offld_flush_handler(void *context,
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("Invalid soc context");
|
|
|
qdf_assert(0);
|
|
|
return;
|
|
|
}
|
|
@@ -5368,10 +5355,8 @@ static void ol_txrx_offld_flush(void *data)
|
|
|
if (qdf_unlikely(!sched_ctx))
|
|
|
return;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (qdf_unlikely(!pdev)) {
|
|
@@ -5411,7 +5396,6 @@ static void ol_register_offld_flush_cb(void (offld_flush_cb)(void *))
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc NULL!");
|
|
|
TXRX_ASSERT2(0);
|
|
|
goto out;
|
|
|
}
|
|
@@ -5436,7 +5420,6 @@ static void ol_register_offld_flush_cb(void (offld_flush_cb)(void *))
|
|
|
hif_device = cds_get_context(QDF_MODULE_ID_HIF);
|
|
|
|
|
|
if (qdf_unlikely(!hif_device)) {
|
|
|
- ol_txrx_err("hif_device NULL!");
|
|
|
qdf_assert(0);
|
|
|
goto out;
|
|
|
}
|
|
@@ -5461,10 +5444,8 @@ static void ol_deregister_offld_flush_cb(void)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -5474,7 +5455,6 @@ static void ol_deregister_offld_flush_cb(void)
|
|
|
hif_device = cds_get_context(QDF_MODULE_ID_HIF);
|
|
|
|
|
|
if (qdf_unlikely(!hif_device)) {
|
|
|
- ol_txrx_err("hif_device NULL!");
|
|
|
qdf_assert(0);
|
|
|
return;
|
|
|
}
|
|
@@ -5605,10 +5585,8 @@ struct cdp_vdev *ol_txrx_get_vdev_from_vdev_id(uint8_t vdev_id)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_vdev_handle vdev = NULL;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return NULL;
|
|
|
- }
|
|
|
|
|
|
vdev = ol_txrx_get_vdev_from_soc_vdev_id(soc, vdev_id);
|
|
|
|
|
@@ -6381,10 +6359,8 @@ bool ol_txrx_get_peer_unmap_conf_support(void)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return false;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -6399,10 +6375,8 @@ void ol_txrx_set_peer_unmap_conf_support(bool val)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -6418,10 +6392,8 @@ bool ol_txrx_get_tx_compl_tsf64(void)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return false;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|
|
@@ -6436,10 +6408,8 @@ void ol_txrx_set_tx_compl_tsf64(bool val)
|
|
|
struct ol_txrx_soc_t *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
ol_txrx_pdev_handle pdev;
|
|
|
|
|
|
- if (qdf_unlikely(!soc)) {
|
|
|
- ol_txrx_err("soc is NULL");
|
|
|
+ if (qdf_unlikely(!soc))
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
pdev = ol_txrx_get_pdev_from_pdev_id(soc, OL_TXRX_PDEV_ID);
|
|
|
if (!pdev) {
|