diff options
author | Salyzyn, Mark <Mark_Salyzyn@adaptec.com> | 2008-01-08 15:48:25 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-01-23 12:29:19 -0500 |
commit | a3940da5e6fe8b833eecdbca3fac9456b4204d6e (patch) | |
tree | e7254ab5376f92b427e283eba55e2f66a7ce1c19 /drivers/scsi/aacraid/aacraid.h | |
parent | 06a43d1725f59a0f5e043bd06081c44ae528098e (diff) |
[SCSI] aacraid: fix big endian issues
Big endian systems issues discovered in the aacraid driver. Somewhat
reverses a patch from November 7th of last year that removed swap
operations because they formerly were being assigned to an u8 array
when they should have been assigned to an le32 array.
This patch is largely inert for any little endian processor
architecture. It resolves a bug in delivering the BlinkLED AIF event
to registered applications when the adapter or associated hardware was
reset due to ill health. A rare corner case occurrence, also largely
unnoticed by any as it was a new (untested!) feature.
Signed-off-by: Mark Salyzyn <aacraid@adaptec.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/aacraid/aacraid.h')
-rw-r--r-- | drivers/scsi/aacraid/aacraid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 6d4e24cea3dc..07def7261004 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scsi/aacraid/aacraid.h | |||
@@ -869,9 +869,9 @@ struct aac_supplement_adapter_info | |||
869 | __le32 SupportedOptions2; | 869 | __le32 SupportedOptions2; |
870 | __le32 ReservedGrowth[1]; | 870 | __le32 ReservedGrowth[1]; |
871 | }; | 871 | }; |
872 | #define AAC_FEATURE_FALCON 0x00000010 | 872 | #define AAC_FEATURE_FALCON cpu_to_le32(0x00000010) |
873 | #define AAC_OPTION_MU_RESET 0x00000001 | 873 | #define AAC_OPTION_MU_RESET cpu_to_le32(0x00000001) |
874 | #define AAC_OPTION_IGNORE_RESET 0x00000002 | 874 | #define AAC_OPTION_IGNORE_RESET cpu_to_le32(0x00000002) |
875 | #define AAC_SIS_VERSION_V3 3 | 875 | #define AAC_SIS_VERSION_V3 3 |
876 | #define AAC_SIS_SLOT_UNKNOWN 0xFF | 876 | #define AAC_SIS_SLOT_UNKNOWN 0xFF |
877 | 877 | ||