diff options
author | Dave Jones <davej@redhat.com> | 2007-05-21 20:59:47 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2007-05-22 16:09:21 -0500 |
commit | 3d9780b97667fcd63159c0933fdce75465da6c70 (patch) | |
tree | 6d77af81cd2422cd44c6e38d5132072aa2ae65bc /drivers/message/fusion/mptbase.h | |
parent | 8fdcf86af61bfba744f5868ec04dad71637ac33a (diff) | |
download | talos-op-linux-3d9780b97667fcd63159c0933fdce75465da6c70.tar.gz talos-op-linux-3d9780b97667fcd63159c0933fdce75465da6c70.zip |
[SCSI] fusion: Fix |/|| confusion
There are several cases where the fusion driver uses the logical || to
try to do an arithmetical or ... fix by replacing with |.
Signed-off-by: Dave Jones <davej@redhat.com>
Acked-by: "Moore, Eric" <Eric.Moore@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message/fusion/mptbase.h')
-rw-r--r-- | drivers/message/fusion/mptbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptbase.h b/drivers/message/fusion/mptbase.h index d25d3be8fcd2..165f81d16d00 100644 --- a/drivers/message/fusion/mptbase.h +++ b/drivers/message/fusion/mptbase.h @@ -436,7 +436,7 @@ typedef struct _MPT_SAS_MGMT { typedef struct _mpt_ioctl_events { u32 event; /* Specified by define above */ u32 eventContext; /* Index or counter */ - int data[2]; /* First 8 bytes of Event Data */ + u32 data[2]; /* First 8 bytes of Event Data */ } MPT_IOCTL_EVENTS; /* |