[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1555436744-15494-1-git-send-email-mohankumar718@gmail.com>
Date: Tue, 16 Apr 2019 20:45:44 +0300
From: Mohan Kumar <mohankumar718@...il.com>
To: linux@...inikbrodowski.net
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] drivers: pcmcia: This patch fix the following checkpatch warning.
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@...il.com>
---
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
Powered by blists - more mailing lists