Commit 17c4edf0 authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

[PATCH] Char: isicom, fix tty index check

Since tty->index is signed and may be < 0, we should assign this to int not
uint.  There is already a check to ensure if it is not negative, but gcc
complains with -W flag enabled and it is perfectly correct:
drivers/char/isicom.c:953: warning: comparison of unsigned expression < 0
is always false

Fix this issue by converting `line' variable from uint to int.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 11c83877
...@@ -946,8 +946,8 @@ static int isicom_open(struct tty_struct *tty, struct file *filp) ...@@ -946,8 +946,8 @@ static int isicom_open(struct tty_struct *tty, struct file *filp)
{ {
struct isi_port *port; struct isi_port *port;
struct isi_board *card; struct isi_board *card;
unsigned int line, board; unsigned int board;
int error; int error, line;
line = tty->index; line = tty->index;
if (line < 0 || line > PORT_COUNT-1) if (line < 0 || line > PORT_COUNT-1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment