提交 54239802 编写于 作者: A Andrew Morton 提交者: Linus Torvalds

[PATCH] sx.c warning fixes

drivers/char/sx.c: In function `sx_set_real_termios':
drivers/char/sx.c:934: warning: int format, long unsigned int arg (arg 2)
drivers/char/sx.c:961: warning: unsigned int format, tcflag_t arg (arg 2)
drivers/char/sx.c:976: warning: unsigned int format, tcflag_t arg (arg 2)
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 8d1d0340
......@@ -931,7 +931,7 @@ static int sx_set_real_termios (void *ptr)
case CS6:sx_write_channel_byte (port, hi_mask, 0x3f);break;
case CS5:sx_write_channel_byte (port, hi_mask, 0x1f);break;
default:
printk (KERN_INFO "sx: Invalid wordsize: %d\n", CFLAG & CSIZE);
printk (KERN_INFO "sx: Invalid wordsize: %lu\n", CFLAG & CSIZE);
break;
}
......@@ -958,7 +958,7 @@ static int sx_set_real_termios (void *ptr)
} else {
set_bit(TTY_HW_COOK_IN, &port->gs.tty->flags);
}
sx_dprintk (SX_DEBUG_TERMIOS, "iflags: %x(%d) ",
sx_dprintk (SX_DEBUG_TERMIOS, "iflags: %lx(%d) ",
port->gs.tty->termios->c_iflag,
I_OTHER(port->gs.tty));
......@@ -973,7 +973,7 @@ static int sx_set_real_termios (void *ptr)
} else {
clear_bit(TTY_HW_COOK_OUT, &port->gs.tty->flags);
}
sx_dprintk (SX_DEBUG_TERMIOS, "oflags: %x(%d)\n",
sx_dprintk (SX_DEBUG_TERMIOS, "oflags: %lx(%d)\n",
port->gs.tty->termios->c_oflag,
O_OTHER(port->gs.tty));
/* port->c_dcd = sx_get_CD (port); */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册