diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-05-05 11:36:18 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-05-16 14:45:58 -0400 |
commit | ea3e6c59266b783b103c0f42a8de5dbe565a43d4 (patch) | |
tree | b9dce06a3180e4a64eaa1dd3b45e8e070e39c315 /drivers/input/joystick/iforce | |
parent | f26a3988917913b3d11b2bd741601a2c64ab9204 (diff) |
Input: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/joystick/iforce')
-rw-r--r-- | drivers/input/joystick/iforce/iforce-usb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/joystick/iforce/iforce-usb.c b/drivers/input/joystick/iforce/iforce-usb.c index 7fb3cf81cfbf..8f6a987ebb9f 100644 --- a/drivers/input/joystick/iforce/iforce-usb.c +++ b/drivers/input/joystick/iforce/iforce-usb.c | |||
@@ -89,10 +89,10 @@ static void iforce_usb_irq(struct urb *urb) | |||
89 | case -ESHUTDOWN: | 89 | case -ESHUTDOWN: |
90 | /* this urb is terminated, clean up */ | 90 | /* this urb is terminated, clean up */ |
91 | dbg("%s - urb shutting down with status: %d", | 91 | dbg("%s - urb shutting down with status: %d", |
92 | __FUNCTION__, urb->status); | 92 | __func__, urb->status); |
93 | return; | 93 | return; |
94 | default: | 94 | default: |
95 | dbg("%s - urb has status of: %d", __FUNCTION__, urb->status); | 95 | dbg("%s - urb has status of: %d", __func__, urb->status); |
96 | goto exit; | 96 | goto exit; |
97 | } | 97 | } |
98 | 98 | ||
@@ -103,7 +103,7 @@ exit: | |||
103 | status = usb_submit_urb (urb, GFP_ATOMIC); | 103 | status = usb_submit_urb (urb, GFP_ATOMIC); |
104 | if (status) | 104 | if (status) |
105 | err ("%s - usb_submit_urb failed with result %d", | 105 | err ("%s - usb_submit_urb failed with result %d", |
106 | __FUNCTION__, status); | 106 | __func__, status); |
107 | } | 107 | } |
108 | 108 | ||
109 | static void iforce_usb_out(struct urb *urb) | 109 | static void iforce_usb_out(struct urb *urb) |