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/hisax/hfc_usb.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/hisax/hfc_usb.c')
-rw-r--r-- | drivers/isdn/hisax/hfc_usb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/isdn/hisax/hfc_usb.c b/drivers/isdn/hisax/hfc_usb.c index 98b0149bca68..8df889b0c1a9 100644 --- a/drivers/isdn/hisax/hfc_usb.c +++ b/drivers/isdn/hisax/hfc_usb.c | |||
@@ -905,7 +905,7 @@ rx_int_complete(struct urb *urb) | |||
905 | if (status) { | 905 | if (status) { |
906 | printk(KERN_INFO | 906 | printk(KERN_INFO |
907 | "HFC-S USB: %s error resubmitting URB fifo(%d)\n", | 907 | "HFC-S USB: %s error resubmitting URB fifo(%d)\n", |
908 | __FUNCTION__, fifon); | 908 | __func__, fifon); |
909 | } | 909 | } |
910 | } | 910 | } |
911 | 911 | ||
@@ -1543,14 +1543,14 @@ hfc_usb_disconnect(struct usb_interface *intf) | |||
1543 | stop_isoc_chain(&context->fifos[i]); | 1543 | stop_isoc_chain(&context->fifos[i]); |
1544 | DBG(HFCUSB_DBG_INIT, | 1544 | DBG(HFCUSB_DBG_INIT, |
1545 | "HFC-S USB: %s stopping ISOC chain Fifo(%i)", | 1545 | "HFC-S USB: %s stopping ISOC chain Fifo(%i)", |
1546 | __FUNCTION__, i); | 1546 | __func__, i); |
1547 | } | 1547 | } |
1548 | } else { | 1548 | } else { |
1549 | if (context->fifos[i].active > 0) { | 1549 | if (context->fifos[i].active > 0) { |
1550 | context->fifos[i].active = 0; | 1550 | context->fifos[i].active = 0; |
1551 | DBG(HFCUSB_DBG_INIT, | 1551 | DBG(HFCUSB_DBG_INIT, |
1552 | "HFC-S USB: %s unlinking URB for Fifo(%i)", | 1552 | "HFC-S USB: %s unlinking URB for Fifo(%i)", |
1553 | __FUNCTION__, i); | 1553 | __func__, i); |
1554 | } | 1554 | } |
1555 | usb_kill_urb(context->fifos[i].urb); | 1555 | usb_kill_urb(context->fifos[i].urb); |
1556 | usb_free_urb(context->fifos[i].urb); | 1556 | usb_free_urb(context->fifos[i].urb); |