[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180816194943.GA25895@nishad>
Date: Fri, 17 Aug 2018 01:19:49 +0530
From: Nishad Kamdar <nishadkamdar@...il.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Christian Lütke-Stetzkamp <christian@...mp.de>,
NeilBrown <neil@...wn.name>, John Crispin <blogic@...nwrt.org>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: [PATCH] staging: mt7621-mmc: Use __func__ instead of __FUNCTION__ in
dbg.h
Use the identifier __func__ instead of gcc specific __FUNCTION__
in dbg.h. Limit these lines to 80 characters. Issues found by
checkpatch.
Signed-off-by: Nishad Kamdar <nishadkamdar@...il.com>
---
drivers/staging/mt7621-mmc/dbg.h | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/mt7621-mmc/dbg.h b/drivers/staging/mt7621-mmc/dbg.h
index 2f2c56b73987..5da275239d7c 100644
--- a/drivers/staging/mt7621-mmc/dbg.h
+++ b/drivers/staging/mt7621-mmc/dbg.h
@@ -115,7 +115,8 @@ do { \
#define ERR_MSG(fmt, args...) \
do { \
printk(KERN_ERR TAG"%d -> "fmt" <- %s() : L<%d> PID<%s><0x%x>\n", \
- host->id, ##args, __FUNCTION__, __LINE__, current->comm, current->pid); \
+ host->id, ##args, __func__, __LINE__, current->comm, \
+ current->pid); \
} while (0);
#if 1
@@ -126,14 +127,15 @@ do { \
#define INIT_MSG(fmt, args...) \
do { \
printk(KERN_ERR TAG"%d -> "fmt" <- %s() : L<%d> PID<%s><0x%x>\n", \
- host->id, ##args, __FUNCTION__, __LINE__, current->comm, current->pid); \
+ host->id, ##args, __func__, __LINE__, current->comm, \
+ current->pid); \
} while (0);
/* PID in ISR in not corrent */
#define IRQ_MSG(fmt, args...) \
do { \
printk(KERN_ERR TAG"%d -> "fmt" <- %s() : L<%d>\n", \
- host->id, ##args, __FUNCTION__, __LINE__); \
+ host->id, ##args, __func__, __LINE__); \
} while (0);
#endif
--
2.17.1
Powered by blists - more mailing lists