qcacmn: dp: Remove redundant __func__ from the logs

The logging macros implicitly takes care of embedding function name
in the log, hence there is no need to include __func__ again.
Getting rid of redundant __func__ reduces driver memory footprint.

Change-Id: I26bfac840ac6732ac83fb008db8e1702996eb21e
CRs-Fixed: 2774457
此提交包含在:
Srinivas Girigowda
2020-09-02 15:11:01 -07:00
提交者 snandini
父節點 6f892d8f22
當前提交 a104d7b453
共有 6 個檔案被更改,包括 31 行新增38 行删除

查看文件

@@ -6363,7 +6363,7 @@ dp_record_mscs_params(struct cdp_soc_t *soc_hdl, uint8_t *peer_mac,
DP_MOD_ID_CDP);
if (!peer) {
dp_err("%s: Peer is NULL!\n", __func__);
dp_err("Peer is NULL!");
goto fail;
}
if (!active) {
@@ -9561,7 +9561,7 @@ QDF_STATUS dp_txrx_clear_dump_stats(struct cdp_soc_t *soc_hdl, uint8_t pdev_id,
QDF_STATUS status = QDF_STATUS_SUCCESS;
if (!soc) {
dp_err("%s: soc is NULL", __func__);
dp_err("soc is NULL");
return QDF_STATUS_E_INVAL;
}