The patch titled
scsi: fix if (...) \n #if... cases missing semicolons when false
has been added to the -mm tree. Its filename is
scsi-fix-if-n-if-cases-missing-semicolons-when-false.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: scsi: fix if (...) \n #if... cases missing semicolons when false
From: Ilpo Järvinen <[EMAIL PROTECTED]>
Signed-off-by: Ilpo Järvinen <[EMAIL PROTECTED]>
Cc: Willem Riede <[EMAIL PROTECTED]>
Cc: James Bottomley <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
origin.patch
watchdog-fix-if-n-if-cases-missing-semicolons-when-false.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html