diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-10-24 18:04:36 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-28 22:04:15 -0400 |
commit | 017560fca496f72ed9dd734ffde63ce39dfe0411 (patch) | |
tree | e63ae9a28fc179e715eda32f12aaec4ca752651b /drivers/scsi/53c700.h | |
parent | 3bf743e7c891d8be8295650b7a6a9b5af083b096 (diff) |
[SCSI] use sfoo_printk() in drivers
Rejections fixed up and
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/53c700.h')
-rw-r--r-- | drivers/scsi/53c700.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/scsi/53c700.h b/drivers/scsi/53c700.h index e86012cf6ab7..362d78483d09 100644 --- a/drivers/scsi/53c700.h +++ b/drivers/scsi/53c700.h | |||
@@ -22,8 +22,14 @@ | |||
22 | 22 | ||
23 | #ifdef NCR_700_DEBUG | 23 | #ifdef NCR_700_DEBUG |
24 | #define DEBUG(x) printk x | 24 | #define DEBUG(x) printk x |
25 | #define DDEBUG(prefix, sdev, fmt, a...) \ | ||
26 | sdev_printk(prefix, sdev, fmt, ##a) | ||
27 | #define CDEBUG(prefix, scmd, fmt, a...) \ | ||
28 | scmd_printk(prefix, scmd, fmt, ##a) | ||
25 | #else | 29 | #else |
26 | #define DEBUG(x) | 30 | #define DEBUG(x) do {} while (0) |
31 | #define DDEBUG(prefix, scmd, fmt, a...) do {} while (0) | ||
32 | #define CDEBUG(prefix, scmd, fmt, a...) do {} while (0) | ||
27 | #endif | 33 | #endif |
28 | 34 | ||
29 | /* The number of available command slots */ | 35 | /* The number of available command slots */ |