diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 11:14:40 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 17:58:34 +0200 |
commit | 156f1ed640170d70c9fc8e5f6f797ea1f2a1653b (patch) | |
tree | 4709685cf46fce1ef552ccbee6d30f5073f99216 /drivers/isdn/capi/kcapi.h | |
parent | eicon: fix sparse integer as NULL pointer warnings (diff) | |
download | linux-156f1ed640170d70c9fc8e5f6f797ea1f2a1653b.tar.xz linux-156f1ed640170d70c9fc8e5f6f797ea1f2a1653b.zip |
isdn: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn/capi/kcapi.h')
-rw-r--r-- | drivers/isdn/capi/kcapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/capi/kcapi.h b/drivers/isdn/capi/kcapi.h index 1cb2c40f9921..244711f7f838 100644 --- a/drivers/isdn/capi/kcapi.h +++ b/drivers/isdn/capi/kcapi.h @@ -17,7 +17,7 @@ #ifdef KCAPI_DEBUG #define DBG(format, arg...) do { \ -printk(KERN_DEBUG "%s: " format "\n" , __FUNCTION__ , ## arg); \ +printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \ } while (0) #else #define DBG(format, arg...) /* */ |