[PATCH] mpt2sas: Fix &&/|| confusion in _scsih_sas_device_status_change_event()

From: Roel Kluin
Date: Wed Dec 30 2009 - 11:55:51 EST


This never evaluates to true.

Signed-off-by: Roel Kluin <roel.kluin@xxxxxxxxx>
---
drivers/scsi/mpt2sas/mpt2sas_scsih.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
index efabea1..82c5474 100644
--- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c
+++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c
@@ -4363,7 +4363,7 @@ _scsih_sas_device_status_change_event(struct MPT2SAS_ADAPTER *ioc,
#endif

if (!(event_data->ReasonCode ==
- MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET &&
+ MPI2_EVENT_SAS_DEV_STAT_RC_INTERNAL_DEVICE_RESET ||
event_data->ReasonCode ==
MPI2_EVENT_SAS_DEV_STAT_RC_CMP_INTERNAL_DEV_RESET))
return;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/