From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix tty interface warnings in arch/um: arch/um/drivers/stdio_console.c:122: warning: initialization from incompatible pointer type arch/um/drivers/ssl.c:139: warning: initialization from incompatible pointer type Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Cc: user-mode-linux-devel@xxxxxxxxxxxxxxxxxxxxx --- arch/um/drivers/line.c | 3 +-- arch/um/include/shared/line.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) --- linux-next-20110315.orig/arch/um/drivers/line.c +++ linux-next-20110315/arch/um/drivers/line.c @@ -255,8 +255,7 @@ static const struct { { KDSIGACCEPT, KERN_INFO, "KDSIGACCEPT" }, }; -int line_ioctl(struct tty_struct *tty, struct file * file, - unsigned int cmd, unsigned long arg) +int line_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg) { int ret; int i; --- linux-next-20110315.orig/arch/um/include/shared/line.h +++ linux-next-20110315/arch/um/include/shared/line.h @@ -77,7 +77,7 @@ extern int line_chars_in_buffer(struct t extern void line_flush_buffer(struct tty_struct *tty); extern void line_flush_chars(struct tty_struct *tty); extern int line_write_room(struct tty_struct *tty); -extern int line_ioctl(struct tty_struct *tty, struct file * file, +extern int line_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg); extern void line_throttle(struct tty_struct *tty); extern void line_unthrottle(struct tty_struct *tty); -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html