diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-30 03:55:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:54 -0400 |
commit | bf9d89295233ae2ba7b312c78ee5657307b09f4c (patch) | |
tree | 3da2fbcd93937bfa1907a893dc0d418c78f3d37b /drivers/char/esp.c | |
parent | 8e24eea728068bbeb6a3c500b848f883a20bf225 (diff) |
drivers/char: 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: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/esp.c')
-rw-r--r-- | drivers/char/esp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/esp.c b/drivers/char/esp.c index 9525eacc4758..84840ba13ff0 100644 --- a/drivers/char/esp.c +++ b/drivers/char/esp.c | |||
@@ -1671,7 +1671,7 @@ static int esp_tiocmget(struct tty_struct *tty, struct file *file) | |||
1671 | unsigned char control, status; | 1671 | unsigned char control, status; |
1672 | unsigned long flags; | 1672 | unsigned long flags; |
1673 | 1673 | ||
1674 | if (serial_paranoia_check(info, tty->name, __FUNCTION__)) | 1674 | if (serial_paranoia_check(info, tty->name, __func__)) |
1675 | return -ENODEV; | 1675 | return -ENODEV; |
1676 | if (tty->flags & (1 << TTY_IO_ERROR)) | 1676 | if (tty->flags & (1 << TTY_IO_ERROR)) |
1677 | return -EIO; | 1677 | return -EIO; |
@@ -1697,7 +1697,7 @@ static int esp_tiocmset(struct tty_struct *tty, struct file *file, | |||
1697 | struct esp_struct *info = tty->driver_data; | 1697 | struct esp_struct *info = tty->driver_data; |
1698 | unsigned long flags; | 1698 | unsigned long flags; |
1699 | 1699 | ||
1700 | if (serial_paranoia_check(info, tty->name, __FUNCTION__)) | 1700 | if (serial_paranoia_check(info, tty->name, __func__)) |
1701 | return -ENODEV; | 1701 | return -ENODEV; |
1702 | if (tty->flags & (1 << TTY_IO_ERROR)) | 1702 | if (tty->flags & (1 << TTY_IO_ERROR)) |
1703 | return -EIO; | 1703 | return -EIO; |