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

@@ -267,8 +267,8 @@ static void hal_validate_shadow_register(struct hal_soc *hal,
}
return;
error:
qdf_print("%s: baddr %pK, desination %pK, shadow_address %pK s0offset %pK index %x",
__func__, hal->dev_base_addr, destination, shadow_address,
qdf_print("baddr %pK, desination %pK, shadow_address %pK s0offset %pK index %x",
hal->dev_base_addr, destination, shadow_address,
shadow_0_offset, index);
QDF_BUG(0);
return;