diff options
author | Hannes Reinecke <hare@suse.de> | 2015-02-04 08:11:34 +0100 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2015-02-04 08:00:24 -0800 |
commit | 9c4a6b1e42801343535ccab4c190019d9975cce8 (patch) | |
tree | 875a83c04e6fb28896e352649fdf00a204a2c56b /include/scsi | |
parent | f50332ff2574130903356e800913c1a73cc6c1dc (diff) | |
download | op-kernel-dev-9c4a6b1e42801343535ccab4c190019d9975cce8.zip op-kernel-dev-9c4a6b1e42801343535ccab4c190019d9975cce8.tar.gz |
scsi_logging: return void for dev_printk() functions
dev_printk() is now a void function, so the related functions
scmd_printk() and sdev_prefix_printk() should be made void, too.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Hannes Reinecke <hare@suse.de>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h index 2e0281e..a4c9336 100644 --- a/include/scsi/scsi_device.h +++ b/include/scsi/scsi_device.h @@ -237,14 +237,14 @@ struct scsi_dh_data { * like scmd_printk, but the device name is passed in * as a string pointer */ -__printf(4, 5) int +__printf(4, 5) void sdev_prefix_printk(const char *, const struct scsi_device *, const char *, const char *, ...); #define sdev_printk(l, sdev, fmt, a...) \ sdev_prefix_printk(l, sdev, NULL, fmt, ##a) -__printf(3, 4) int +__printf(3, 4) void scmd_printk(const char *, const struct scsi_cmnd *, const char *, ...); #define scmd_dbg(scmd, fmt, a...) \ |