The patch titled scsi: fix if (...) \n #if... cases missing semicolons when false has been removed from the -mm tree. Its filename was scsi-fix-if-n-if-cases-missing-semicolons-when-false.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: scsi: fix if (...) \n #if... cases missing semicolons when false From: Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxx> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxx> Cc: Willem Riede <osst@xxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/osst.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN drivers/scsi/osst.c~scsi-fix-if-n-if-cases-missing-semicolons-when-false drivers/scsi/osst.c --- a/drivers/scsi/osst.c~scsi-fix-if-n-if-cases-missing-semicolons-when-false +++ a/drivers/scsi/osst.c @@ -593,10 +593,11 @@ static int osst_verify_frame(struct osst if (aux->frame_type != OS_FRAME_TYPE_DATA && aux->frame_type != OS_FRAME_TYPE_EOD && aux->frame_type != OS_FRAME_TYPE_MARKER) { - if (!quiet) + if (!quiet) { #if DEBUG printk(OSST_DEB_MSG "%s:D: Skipping frame, frame type %x\n", name, aux->frame_type); #endif + } goto err_out; } if (aux->frame_type == OS_FRAME_TYPE_EOD && @@ -606,11 +607,12 @@ static int osst_verify_frame(struct osst goto err_out; } if (frame_seq_number != -1 && ntohl(aux->frame_seq_num) != frame_seq_number) { - if (!quiet) + if (!quiet) { #if DEBUG printk(OSST_DEB_MSG "%s:D: Skipping frame, sequence number %u (expected %d)\n", name, ntohl(aux->frame_seq_num), frame_seq_number); #endif + } goto err_out; } if (aux->frame_type == OS_FRAME_TYPE_MARKER) { _ Patches currently in -mm which might be from ilpo.jarvinen@xxxxxxxxxxx are origin.patch git-scsi-rc-fixes.patch git-watchdog.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