diff options
author | akpm@osdl.org <akpm@osdl.org> | 2006-04-15 03:30:24 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-04-15 10:04:40 -0400 |
commit | c5f2e6404c65e8380c9ba80a7d58a27d2642743b (patch) | |
tree | a8af59f4cd7154032ac35486586babe73467b3c9 /drivers/scsi/scsi_logging.h | |
parent | cdb8c2a6d848deb9eeefffff42974478fbb51b8c (diff) |
[SCSI] scsi_scan.c: fix compile warnings
drivers/scsi/scsi_scan.c: In function `scsi_probe_and_add_lun':
drivers/scsi/scsi_scan.c:926: warning: unused variable `vend'
drivers/scsi/scsi_scan.c:926: warning: unused variable `mod'
drivers/scsi/scsi_scan.c: At top level:
drivers/scsi/scsi_scan.c:829: warning: `scsi_inq_str' defined but not used
Fix those, tighten up the (somewhat poorly-designed) logging macro and fix
some coding-style warts.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/scsi_logging.h')
-rw-r--r-- | drivers/scsi/scsi_logging.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/scsi/scsi_logging.h b/drivers/scsi/scsi_logging.h index e1722ba94586..a3e2af6a846c 100644 --- a/drivers/scsi/scsi_logging.h +++ b/drivers/scsi/scsi_logging.h | |||
@@ -45,10 +45,12 @@ extern unsigned int scsi_logging_level; | |||
45 | ((scsi_logging_level >> (SHIFT)) & ((1 << (BITS)) - 1)) | 45 | ((scsi_logging_level >> (SHIFT)) & ((1 << (BITS)) - 1)) |
46 | 46 | ||
47 | #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) \ | 47 | #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) \ |
48 | { \ | 48 | do { \ |
49 | if (unlikely((SCSI_LOG_LEVEL(SHIFT, BITS)) > (LEVEL))) \ | 49 | if (unlikely((SCSI_LOG_LEVEL(SHIFT, BITS)) > (LEVEL))) \ |
50 | (CMD); \ | 50 | do { \ |
51 | } | 51 | CMD; \ |
52 | } while (0); \ | ||
53 | } while (0) | ||
52 | #else | 54 | #else |
53 | #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) | 55 | #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) |
54 | #endif /* CONFIG_SCSI_LOGGING */ | 56 | #endif /* CONFIG_SCSI_LOGGING */ |