diff options
Diffstat (limited to 'drivers/isdn/hisax/hisax_debug.h')
-rw-r--r-- | drivers/isdn/hisax/hisax_debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/isdn/hisax/hisax_debug.h b/drivers/isdn/hisax/hisax_debug.h index ceafecdb1037..5ed3b1c44184 100644 --- a/drivers/isdn/hisax/hisax_debug.h +++ b/drivers/isdn/hisax/hisax_debug.h | |||
@@ -27,14 +27,14 @@ | |||
27 | 27 | ||
28 | #define DBG(level, format, arg...) do { \ | 28 | #define DBG(level, format, arg...) do { \ |
29 | if (level & __debug_variable) \ | 29 | if (level & __debug_variable) \ |
30 | printk(KERN_DEBUG "%s: " format "\n" , __FUNCTION__ , ## arg); \ | 30 | printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \ |
31 | } while (0) | 31 | } while (0) |
32 | 32 | ||
33 | #define DBG_PACKET(level,data,count) \ | 33 | #define DBG_PACKET(level,data,count) \ |
34 | if (level & __debug_variable) dump_packet(__FUNCTION__,data,count) | 34 | if (level & __debug_variable) dump_packet(__func__,data,count) |
35 | 35 | ||
36 | #define DBG_SKB(level,skb) \ | 36 | #define DBG_SKB(level,skb) \ |
37 | if ((level & __debug_variable) && skb) dump_packet(__FUNCTION__,skb->data,skb->len) | 37 | if ((level & __debug_variable) && skb) dump_packet(__func__,skb->data,skb->len) |
38 | 38 | ||
39 | 39 | ||
40 | static void __attribute__((unused)) | 40 | static void __attribute__((unused)) |