[PATCH] drivers: staging: ccree: use __func__ to get function name in error messages.

From: Dhananjay Balan
Date: Mon Jul 17 2017 - 09:55:13 EST


fixes checkpatch warning.

Signed-off-by: Dhananjay Balan <mail@xxxxxxxxx>
---
drivers/staging/ccree/ssi_driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ccree/ssi_driver.c b/drivers/staging/ccree/ssi_driver.c
index d7b9a636d907..e0faca0a30a6 100644
--- a/drivers/staging/ccree/ssi_driver.c
+++ b/drivers/staging/ccree/ssi_driver.c
@@ -81,7 +81,7 @@ void dump_byte_array(const char *name, const u8 *the_array, unsigned long size)
char line_buf[80];

if (!the_array) {
- SSI_LOG_ERR("cannot dump_byte_array - NULL pointer\n");
+ SSI_LOG_ERR("cannot %s - NULL pointer\n", __func__);
return;
}

--
2.13.2