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 | 71cc2c2152170b8166f59abb0604dc62073aeb92 (patch) | |
tree | a33d71f73b55fa1cb43d38fc108faba20b24b64c /drivers/serial/68360serial.c | |
parent | bf9d89295233ae2ba7b312c78ee5657307b09f4c (diff) |
serial: 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/serial/68360serial.c')
-rw-r--r-- | drivers/serial/68360serial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/serial/68360serial.c b/drivers/serial/68360serial.c index 4714bd697af2..d9d4e9552a4d 100644 --- a/drivers/serial/68360serial.c +++ b/drivers/serial/68360serial.c | |||
@@ -1247,7 +1247,7 @@ static int rs_360_tiocmget(struct tty_struct *tty, struct file *file) | |||
1247 | #ifdef modem_control | 1247 | #ifdef modem_control |
1248 | unsigned char control, status; | 1248 | unsigned char control, status; |
1249 | 1249 | ||
1250 | if (serial_paranoia_check(info, tty->name, __FUNCTION__)) | 1250 | if (serial_paranoia_check(info, tty->name, __func__)) |
1251 | return -ENODEV; | 1251 | return -ENODEV; |
1252 | 1252 | ||
1253 | if (tty->flags & (1 << TTY_IO_ERROR)) | 1253 | if (tty->flags & (1 << TTY_IO_ERROR)) |
@@ -1278,7 +1278,7 @@ static int rs_360_tiocmset(struct tty_struct *tty, struct file *file, | |||
1278 | ser_info_t *info = (ser_info_t *)tty->driver_data; | 1278 | ser_info_t *info = (ser_info_t *)tty->driver_data; |
1279 | unsigned int arg; | 1279 | unsigned int arg; |
1280 | 1280 | ||
1281 | if (serial_paranoia_check(info, tty->name, __FUNCTION__)) | 1281 | if (serial_paranoia_check(info, tty->name, __func__)) |
1282 | return -ENODEV; | 1282 | return -ENODEV; |
1283 | 1283 | ||
1284 | if (tty->flags & (1 << TTY_IO_ERROR)) | 1284 | if (tty->flags & (1 << TTY_IO_ERROR)) |