diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:14:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:34 -0400 |
commit | 156f1ed640170d70c9fc8e5f6f797ea1f2a1653b (patch) | |
tree | 4709685cf46fce1ef552ccbee6d30f5073f99216 /drivers/isdn/i4l/isdn_common.c | |
parent | dd58c0dd30ac761837b1d0d8cc434c7ec7b2df68 (diff) |
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/i4l/isdn_common.c')
-rw-r--r-- | drivers/isdn/i4l/isdn_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/i4l/isdn_common.c b/drivers/isdn/i4l/isdn_common.c index d4ad6992f776..0f3c66de69bc 100644 --- a/drivers/isdn/i4l/isdn_common.c +++ b/drivers/isdn/i4l/isdn_common.c | |||
@@ -1924,7 +1924,7 @@ isdn_free_channel(int di, int ch, int usage) | |||
1924 | 1924 | ||
1925 | if ((di < 0) || (ch < 0)) { | 1925 | if ((di < 0) || (ch < 0)) { |
1926 | printk(KERN_WARNING "%s: called with invalid drv(%d) or channel(%d)\n", | 1926 | printk(KERN_WARNING "%s: called with invalid drv(%d) or channel(%d)\n", |
1927 | __FUNCTION__, di, ch); | 1927 | __func__, di, ch); |
1928 | return; | 1928 | return; |
1929 | } | 1929 | } |
1930 | for (i = 0; i < ISDN_MAX_CHANNELS; i++) | 1930 | for (i = 0; i < ISDN_MAX_CHANNELS; i++) |