qcacmn: hal: 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: I6b5beea990e78486e1e5aab5a8df5fc2f1e5ab51
CRs-Fixed: 2774457
This commit is contained in:
Srinivas Girigowda
2020-09-03 12:57:52 -07:00
committed by snandini
parent 51ba6fe67c
commit 5040a3b6ed
3 changed files with 7 additions and 9 deletions

View File

@@ -539,8 +539,7 @@ inline int hal_reo_cmd_flush_cache(hal_ring_handle_t hal_ring_hdl,
if (cp->block_use_after_flush) {
index = hal_find_zero_bit(hal_soc->reo_res_bitmap);
if (index > 3) {
qdf_print("%s, No blocking resource available!",
__func__);
qdf_print("No blocking resource available!");
hal_srng_access_end(hal_soc, hal_ring_hdl);
return -EBUSY;
}
@@ -624,8 +623,7 @@ inline int hal_reo_cmd_unblock_cache(hal_ring_handle_t hal_ring_hdl,
index = hal_find_one_bit(hal_soc->reo_res_bitmap);
if (index > 3) {
hal_srng_access_end(hal_soc, hal_ring_hdl);
qdf_print("%s: No blocking resource to unblock!",
__func__);
qdf_print("No blocking resource to unblock!");
return -EBUSY;
}
}