The patch titled Char: cyclades, fix warnings has been removed from the -mm tree. Its filename was char-cyclades-fix-warnings.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Char: cyclades, fix warnings From: Jiri Slaby <jirislaby@xxxxxxxxx> fix gcc signed/unsigned warnings Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/cyclades.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/char/cyclades.c~char-cyclades-fix-warnings drivers/char/cyclades.c --- a/drivers/char/cyclades.c~char-cyclades-fix-warnings +++ a/drivers/char/cyclades.c @@ -1644,7 +1644,8 @@ cyz_handle_rx(struct cyclades_port *info char_count = rx_put - rx_get; else char_count = rx_put - rx_get + rx_bufsize; - if (char_count >= cy_readl(&buf_ctrl->rx_threshold)) { + if (char_count >= (int)cy_readl(&buf_ctrl-> + rx_threshold)) { cy_sched_event(info, Cy_EVENT_Z_RX_FULL); } #endif @@ -2941,7 +2942,7 @@ static void cy_put_char(struct tty_struc return; CY_LOCK(info, flags); - if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1) { + if (info->xmit_cnt >= (int)(SERIAL_XMIT_SIZE - 1)) { CY_UNLOCK(info, flags); return; } _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are char-cyclades-fix-warnings.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html