The patch titled stv680 boolean logic bug has been removed from the -mm tree. Its filename is stv680-boolean-logic-bug.patch This patch was dropped because it was nacked by the maintainer ------------------------------------------------------ Subject: stv680 boolean logic bug From: Dave Jones <davej@xxxxxxxxxx> This looks closer to what I believe the original intent was. (Also fixes line-len to meet CodingStyle) Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Cc: Olivier Galibert <galibert@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/media/video/stv680.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/media/video/stv680.c~stv680-boolean-logic-bug drivers/media/video/stv680.c --- a/drivers/media/video/stv680.c~stv680-boolean-logic-bug +++ a/drivers/media/video/stv680.c @@ -975,7 +975,8 @@ static void bayer_unshuffle (struct usb_ frame->grabstate = FRAME_DONE; stv680->framecount++; stv680->readcount++; - if (stv680->frame[(stv680->curframe + 1) & (STV680_NUMFRAMES - 1)].grabstate == FRAME_READY) { + if (stv680->frame[(stv680->curframe + 1) && + (STV680_NUMFRAMES - 1)].grabstate == FRAME_READY) { stv680->curframe = (stv680->curframe + 1) & (STV680_NUMFRAMES - 1); } _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-acpi.patch git-agpgart.patch git-block.patch remove-useless-checks-in-cifs-connectc.patch fix-up-funky-logic-in-dvb.patch stv680-boolean-logic-bug.patch remove-silly-messages-from-input-layer.patch fix-oddball-boolean-logic-in-s390-netiucv.patch s390-broken-null-test-in-claw-driver.patch fix-ide-locking-error.patch post-halloween-doc.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