diff options
author | Kashyap, Desai <kashyap.desai@lsi.com> | 2010-11-13 04:29:20 +0530 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-12-21 12:24:02 -0600 |
commit | 363fa50fc35357b1361fb63b0726335de993374a (patch) | |
tree | b121e3cff170fa11d7caa3a7af64a321aab51043 /drivers/scsi/mpt2sas/mpt2sas_scsih.c | |
parent | 1f768e91e1fcd9f0df657783847347a833fdc573 (diff) | |
download | kernel_samsung_smdk4412-363fa50fc35357b1361fb63b0726335de993374a.tar.gz kernel_samsung_smdk4412-363fa50fc35357b1361fb63b0726335de993374a.tar.bz2 kernel_samsung_smdk4412-363fa50fc35357b1361fb63b0726335de993374a.zip |
[SCSI] mpt2sas: Removed compiler warnnings when logging is disabled
The compiler throws warning messages while compiling without
CONFIG_SCSI_MPT2SAS_LOGGING.
Set proper ifdef for CONFIG_SCSI_MPT2SAS_LOGGING to avoid warnnings.
Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/mpt2sas/mpt2sas_scsih.c')
-rw-r--r-- | drivers/scsi/mpt2sas/mpt2sas_scsih.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c index 1a96a00418a..5af5781d946 100644 --- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c +++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c @@ -2715,9 +2715,10 @@ static u8 _scsih_sas_control_complete(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply) { +#ifdef CONFIG_SCSI_MPT2SAS_LOGGING Mpi2SasIoUnitControlReply_t *mpi_reply = mpt2sas_base_get_reply_virt_addr(ioc, reply); - +#endif dewtprintk(ioc, printk(MPT2SAS_INFO_FMT "sc_complete:handle(0x%04x), (open) " "smid(%d), ioc_status(0x%04x), loginfo(0x%08x)\n", |