2003-08-22 07:32:50

by Gerardo Exequiel Pozzi

[permalink] [raw]
Subject: [PATCH][resend] 4/13 2.4.22-rc2 fix __FUNCTION__ warnings drivers/media/video

Hi people,
this patch fix the warning: concatenation of string literals with __FUNCTION__ is deprecated

cpia.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)

--- linux-2.4.22-rc2/drivers/media/video/cpia.h 2003-06-13 11:51:34.000000000 -0300
+++ linux-2.4.22-rc2-fix/drivers/media/video/cpia.h 2003-08-21 00:08:28.000000000 -0300
@@ -393,12 +393,12 @@
/* ErrorCode */
#define ERROR_FLICKER_BELOW_MIN_EXP 0x01 /*flicker exposure got below minimum exposure */

-#define ALOG(lineno,fmt,args...) printk(fmt,lineno,##args)
-#define LOG(fmt,args...) ALOG((__LINE__),KERN_INFO __FILE__":"__FUNCTION__"(%d):"fmt,##args)
+#define ALOG(fmt,args...) printk(fmt, ##args)
+#define LOG(fmt,args...) ALOG(KERN_INFO __FILE__ ":%s(%d):" fmt, __FUNCTION__ , __LINE__ , ##args)

#ifdef _CPIA_DEBUG_
-#define ADBG(lineno,fmt,args...) printk(fmt, jiffies, lineno, ##args)
-#define DBG(fmt,args...) ADBG((__LINE__),KERN_DEBUG __FILE__"(%ld):"__FUNCTION__"(%d):"fmt,##args)
+#define ADBG(fmt,args...) printk(fmt, jiffies, ##args)
+#define DBG(fmt,args...) ADBG(KERN_DEBUG __FILE__" (%ld):%s(%d):" fmt, __FUNCTION__, __LINE__ , ##args)
#else
#define DBG(fmn,args...) do {} while(0)
#endif

ciao,
djgera


--
Gerardo Exequiel Pozzi ( djgera )
http://www.vmlinuz.com.ar http://www.djgera.com.ar
KeyID: 0x1B8C330D
Key fingerprint = 0CAA D5D4 CD85 4434 A219 76ED 39AB 221B 1B8C 330D