qcacmn: Add NULL check for regulatory tx ops

Add NULL check for regulatory tx ops

Change-Id: Ib2cc4c795948111c9405ae14de66ad1ab5ccbdd8
This commit is contained in:
Ashok Ponnaiah
2017-04-25 16:52:02 +05:30
committed by snandini
parent 0e5c6c7ec7
commit 922d5a4dbf

View File

@@ -347,7 +347,8 @@ QDF_STATUS regulatory_psoc_open(struct wlan_objmgr_psoc *psoc)
struct wlan_lmac_if_reg_tx_ops *tx_ops;
tx_ops = get_reg_psoc_tx_ops(psoc);
tx_ops->register_master_handler(psoc, NULL);
if (tx_ops->register_master_handler)
tx_ops->register_master_handler(psoc, NULL);
return QDF_STATUS_SUCCESS;
};
@@ -357,7 +358,8 @@ QDF_STATUS regulatory_psoc_close(struct wlan_objmgr_psoc *psoc)
struct wlan_lmac_if_reg_tx_ops *tx_ops;
tx_ops = get_reg_psoc_tx_ops(psoc);
tx_ops->unregister_master_handler(psoc, NULL);
if (tx_ops->unregister_master_handler)
tx_ops->unregister_master_handler(psoc, NULL);
return QDF_STATUS_SUCCESS;
};