aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sun3_NCR5380.c
diff options
context:
space:
mode:
authorFinn Thain <fthain@telegraphics.com.au>2014-05-28 10:43:43 -0400
committerChristoph Hellwig <hch@lst.de>2014-05-28 12:14:16 -0400
commit16b9d870a0f19f6c1061927a623d9c51c09f2bed (patch)
tree9ac58f343fd79d23b62a6ea3e1fd033525dad54a /drivers/scsi/sun3_NCR5380.c
parenta48ac9e5d4f3555bdec2fd61e49fc71b26810d68 (diff)
scsi/NCR5380: dprintk macro
This is the delta between the two submissions: [PATCH 00/12] scsi/NCR5380: fix debugging macros and #include structure and [PATCH v2 00/12] scsi/NCR5380: fix debugging macros and #include structure The macro definition changes were discussed on the mailing list during review. The idea is to get the compiler to check the parameters of disabled printk() calls so that the debugging code doesn't rot again. Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/sun3_NCR5380.c')
-rw-r--r--drivers/scsi/sun3_NCR5380.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/scsi/sun3_NCR5380.c b/drivers/scsi/sun3_NCR5380.c
index 61a2c101b4bc..88220794cc98 100644
--- a/drivers/scsi/sun3_NCR5380.c
+++ b/drivers/scsi/sun3_NCR5380.c
@@ -1006,12 +1006,8 @@ static void NCR5380_main (struct work_struct *bl)
1006 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, 1006 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
1007 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp) ) { 1007 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp) ) {
1008 1008
1009#if (NDEBUG & NDEBUG_LISTS)
1010 if (prev != tmp) 1009 if (prev != tmp)
1011 printk("MAIN tmp=%p target=%d busy=%d lun=%d\n", 1010 dprintk(NDEBUG_LISTS, "MAIN tmp=%p target=%d busy=%d lun=%d\n", tmp, tmp->device->id, hostdata->busy[tmp->device->id], tmp->device->lun);
1012 tmp, tmp->target, hostdata->busy[tmp->target],
1013 tmp->lun);
1014#endif
1015 /* When we find one, remove it from the issue queue. */ 1011 /* When we find one, remove it from the issue queue. */
1016 /* ++guenther: possible race with Falcon locking */ 1012 /* ++guenther: possible race with Falcon locking */
1017 if ( 1013 if (