diff options
Diffstat (limited to 'drivers/scsi/bfa/include/bfi/bfi.h')
-rw-r--r-- | drivers/scsi/bfa/include/bfi/bfi.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/scsi/bfa/include/bfi/bfi.h b/drivers/scsi/bfa/include/bfi/bfi.h index 6cadfe0d4ba1..a550e80cabd2 100644 --- a/drivers/scsi/bfa/include/bfi/bfi.h +++ b/drivers/scsi/bfa/include/bfi/bfi.h | |||
@@ -93,13 +93,13 @@ union bfi_addr_u { | |||
93 | */ | 93 | */ |
94 | struct bfi_sge_s { | 94 | struct bfi_sge_s { |
95 | #ifdef __BIGENDIAN | 95 | #ifdef __BIGENDIAN |
96 | u32 flags : 2, | 96 | u32 flags:2, |
97 | rsvd : 2, | 97 | rsvd:2, |
98 | sg_len : 28; | 98 | sg_len:28; |
99 | #else | 99 | #else |
100 | u32 sg_len : 28, | 100 | u32 sg_len:28, |
101 | rsvd : 2, | 101 | rsvd:2, |
102 | flags : 2; | 102 | flags:2; |
103 | #endif | 103 | #endif |
104 | union bfi_addr_u sga; | 104 | union bfi_addr_u sga; |
105 | }; | 105 | }; |
@@ -143,8 +143,8 @@ enum bfi_mclass { | |||
143 | BFI_MC_IOC = 1, /* IO Controller (IOC) */ | 143 | BFI_MC_IOC = 1, /* IO Controller (IOC) */ |
144 | BFI_MC_DIAG = 2, /* Diagnostic Msgs */ | 144 | BFI_MC_DIAG = 2, /* Diagnostic Msgs */ |
145 | BFI_MC_FLASH = 3, /* Flash message class */ | 145 | BFI_MC_FLASH = 3, /* Flash message class */ |
146 | BFI_MC_CEE = 4, | 146 | BFI_MC_CEE = 4, /* CEE */ |
147 | BFI_MC_FC_PORT = 5, /* FC port */ | 147 | BFI_MC_FCPORT = 5, /* FC port */ |
148 | BFI_MC_IOCFC = 6, /* FC - IO Controller (IOC) */ | 148 | BFI_MC_IOCFC = 6, /* FC - IO Controller (IOC) */ |
149 | BFI_MC_LL = 7, /* Link Layer */ | 149 | BFI_MC_LL = 7, /* Link Layer */ |
150 | BFI_MC_UF = 8, /* Unsolicited frame receive */ | 150 | BFI_MC_UF = 8, /* Unsolicited frame receive */ |