* [PATCH][resend] 12/13 2.4.22-rc2 fix __FUNCTION__ warnings net/irda [6/7]
@ 2003-08-22 7:35 Gerardo Exequiel Pozzi
0 siblings, 0 replies; only message in thread
From: Gerardo Exequiel Pozzi @ 2003-08-22 7:35 UTC (permalink / raw)
To: linux-kernel; +Cc: Alan Cox, Dag Brattli, Marcelo Tosatti
Hi people,
this patch fix the warning: concatenation of string literals with __FUNCTION__ is deprecated
irnet.h | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
--- linux-2.4.22-rc2/net/irda/irnet/irnet.h 2003-06-13 11:51:39.000000000 -0300
+++ linux-2.4.22-rc2-fix/net/irda/irnet/irnet.h 2003-08-21 00:08:28.000000000 -0300
@@ -322,29 +322,29 @@
* compiler will optimise away the if() in all cases.
*/
/* All error messages (will show up in the normal logs) */
-#define DERROR(dbg, args...) \
- {if(DEBUG_##dbg) \
- printk(KERN_INFO "irnet: " __FUNCTION__ "(): " args);}
+#define DERROR(dbg, format, args...) \
+ {if(DEBUG_##dbg) \
+ printk(KERN_INFO "irnet: %s(): " format, __FUNCTION__ , ##args);}
/* Normal debug message (will show up in /var/log/debug) */
-#define DEBUG(dbg, args...) \
- {if(DEBUG_##dbg) \
- printk(KERN_DEBUG "irnet: " __FUNCTION__ "(): " args);}
+#define DEBUG(dbg, format, args...) \
+ {if(DEBUG_##dbg) \
+ printk(KERN_DEBUG "irnet: %s(): " format, __FUNCTION__ , ##args);}
/* Entering a function (trace) */
-#define DENTER(dbg, args...) \
- {if(DEBUG_##dbg) \
- printk(KERN_DEBUG "irnet: ->" __FUNCTION__ args);}
+#define DENTER(dbg, format, args...) \
+ {if(DEBUG_##dbg) \
+ printk(KERN_DEBUG "irnet: -> %s" format, __FUNCTION__ , ##args);}
/* Entering and exiting a function in one go (trace) */
-#define DPASS(dbg, args...) \
- {if(DEBUG_##dbg) \
- printk(KERN_DEBUG "irnet: <>" __FUNCTION__ args);}
+#define DPASS(dbg, format, args...) \
+ {if(DEBUG_##dbg) \
+ printk(KERN_DEBUG "irnet: <>%s" format, __FUNCTION__ , ##args);}
/* Exiting a function (trace) */
-#define DEXIT(dbg, args...) \
- {if(DEBUG_##dbg) \
- printk(KERN_DEBUG "irnet: <-" __FUNCTION__ "()" args);}
+#define DEXIT(dbg, format, args...) \
+ {if(DEBUG_##dbg) \
+ printk(KERN_DEBUG "irnet: <-%s()" format, __FUNCTION__ , ##args);}
/* Exit a function with debug */
#define DRETURN(ret, dbg, args...) \
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-08-22 7:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-22 7:35 [PATCH][resend] 12/13 2.4.22-rc2 fix __FUNCTION__ warnings net/irda [6/7] Gerardo Exequiel Pozzi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®