dev_err: replacing hardcoded function name with '%s' and __func__

Signed-off-by: Pushkar Jambhlekar <pushkar....@gmail.com>
---
 drivers/staging/wilc1000/wilc_sdio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wilc1000/wilc_sdio.c 
b/drivers/staging/wilc1000/wilc_sdio.c
index ad4eb0f..ce6c3b4 100644
--- a/drivers/staging/wilc1000/wilc_sdio.c
+++ b/drivers/staging/wilc1000/wilc_sdio.c
@@ -74,7 +74,7 @@ static int wilc_sdio_cmd52(struct wilc *wilc, struct 
sdio_cmd52 *cmd)
        sdio_release_host(func);
 
        if (ret)
-               dev_err(&func->dev, "wilc_sdio_cmd52..failed, err(%d)\n", ret);
+               dev_err(&func->dev, "%s..failed, err(%d)\n", __func__, ret);
        return ret;
 }
 
@@ -103,7 +103,7 @@ static int wilc_sdio_cmd53(struct wilc *wilc, struct 
sdio_cmd53 *cmd)
        sdio_release_host(func);
 
        if (ret)
-               dev_err(&func->dev, "wilc_sdio_cmd53..failed, err(%d)\n", ret);
+               dev_err(&func->dev, "%s..failed, err(%d)\n", __func__,  ret);
 
        return ret;
 }
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to