diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-15 22:01:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:30 -0700 |
commit | 80a914dc05683ecfc98f9e1887fd6564846ffbec (patch) | |
tree | 2120b4007bc9488eebd98a4d40b00221d17ecb2b /drivers/input | |
parent | d5c003b4d1690e666dbab02bc8e705947baa848c (diff) | |
download | kernel_samsung_smdk4412-80a914dc05683ecfc98f9e1887fd6564846ffbec.zip kernel_samsung_smdk4412-80a914dc05683ecfc98f9e1887fd6564846ffbec.tar.gz kernel_samsung_smdk4412-80a914dc05683ecfc98f9e1887fd6564846ffbec.tar.bz2 |
misc: replace __FUNCTION__ with __func__
__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: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/joystick/xpad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 6791be8..839d1c9 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -455,10 +455,10 @@ static void xpad_bulk_out(struct urb *urb) case -ENOENT: case -ESHUTDOWN: /* this urb is terminated, clean up */ - dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status); + dbg("%s - urb shutting down with status: %d", __func__, urb->status); break; default: - dbg("%s - nonzero urb status received: %d", __FUNCTION__, urb->status); + dbg("%s - nonzero urb status received: %d", __func__, urb->status); } } |