Commit 6c0286b1 authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

Char: rocket, fix signed/unsigned warning

Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4384a3fa
...@@ -549,8 +549,8 @@ static void rp_handle_port(struct r_port *info) ...@@ -549,8 +549,8 @@ static void rp_handle_port(struct r_port *info)
static void rp_do_poll(unsigned long dummy) static void rp_do_poll(unsigned long dummy)
{ {
CONTROLLER_t *ctlp; CONTROLLER_t *ctlp;
int ctrl, aiop, ch, line, i; int ctrl, aiop, ch, line;
unsigned int xmitmask; unsigned int xmitmask, i;
unsigned int CtlMask; unsigned int CtlMask;
unsigned char AiopMask; unsigned char AiopMask;
Word_t bit; Word_t bit;
......
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