The patch titled Cyclades Cleanup has been removed from the -mm tree. Its filename is cyclades-cleanup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Cyclades Cleanup From: Eric Sesterhenn <snakebyte@xxxxxx> coverity choked at two !tty checks, in places where tty can never be NULL. Since it removes some code we should remove these checks. (Coverity ids #763,#762) [akpm@xxxxxxxx: even cleaner!] Signed-off-by: Eric Sesterhenn <snakebyte@xxxxxx> Acked-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/cyclades.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff -puN drivers/char/cyclades.c~cyclades-cleanup drivers/char/cyclades.c --- a/drivers/char/cyclades.c~cyclades-cleanup +++ a/drivers/char/cyclades.c @@ -2833,9 +2833,8 @@ cy_write(struct tty_struct * tty, const return 0; } - if (!tty || !info->xmit_buf || !tmp_buf){ - return 0; - } + if (!info->xmit_buf || !tmp_buf) + return 0; CY_LOCK(info, flags); while (1) { @@ -2884,7 +2883,7 @@ cy_put_char(struct tty_struct *tty, unsi if (serial_paranoia_check(info, tty->name, "cy_put_char")) return; - if (!tty || !info->xmit_buf) + if (!info->xmit_buf) return; CY_LOCK(info, flags); _ Patches currently in -mm which might be from snakebyte@xxxxxx are origin.patch git-gfs2.patch fix-typo-in-drivers-isdn-hisax-q931c.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