Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3595726a authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds
Browse files

uml: replace remaining __FUNCTION__ occurrences



__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3af9c5be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -304,7 +304,7 @@ int line_ioctl(struct tty_struct *tty, struct file * file,
				break;
		if (i == ARRAY_SIZE(tty_ioctls)) {
			printk(KERN_ERR "%s: %s: unknown ioctl: 0x%x\n",
			       __FUNCTION__, tty->name, cmd);
			       __func__, tty->name, cmd);
		}
		ret = -ENOIOCTLCMD;
		break;