Commit 80ce9ebe authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] Generic serial warning

Generic serial: jiffies are unsigned long
parent 3dbbef1c
...@@ -348,7 +348,7 @@ int gs_real_chars_in_buffer(struct tty_struct *tty) ...@@ -348,7 +348,7 @@ int gs_real_chars_in_buffer(struct tty_struct *tty)
static int gs_wait_tx_flushed (void * ptr, int timeout) static int gs_wait_tx_flushed (void * ptr, int timeout)
{ {
struct gs_port *port = ptr; struct gs_port *port = ptr;
long end_jiffies; unsigned long end_jiffies;
int jiffies_to_transmit, charsleft = 0, rv = 0; int jiffies_to_transmit, charsleft = 0, rv = 0;
int rcib; int rcib;
......
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