[PATCH] drivers: pcmcia: This patch fix the following checkpatch warning.

From: Mohan Kumar
Date: Tue Apr 16 2019 - 13:45:54 EST


Switch hardcoded function name with a reference to __func__ making the
code more maintainable

WARNING: Prefer using '"%s...", __func__' to using function's name, in a
string

Signed-off-by: Mohan Kumar <mohankumar718@xxxxxxxxx>
---
drivers/pcmcia/tcic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pcmcia/tcic.c b/drivers/pcmcia/tcic.c
index 1a0e3f0987..fc653e7 100644
--- a/drivers/pcmcia/tcic.c
+++ b/drivers/pcmcia/tcic.c
@@ -540,7 +540,7 @@ static irqreturn_t tcic_interrupt(int irq, void *dev)
} else
active = 1;

- pr_debug("tcic_interrupt()\n");
+ pr_debug("%s()\n", __func__);

for (i = 0; i < sockets; i++) {
psock = socket_table[i].psock;
@@ -583,7 +583,7 @@ static irqreturn_t tcic_interrupt(int irq, void *dev)

static void tcic_timer(struct timer_list *unused)
{
- pr_debug("tcic_timer()\n");
+ pr_debug("%s()\n", __func__);
tcic_timer_pending = 0;
tcic_interrupt(0, NULL);
} /* tcic_timer */
--
2.7.4