[SCSI] qla1280: don't use bitfields for hardware access, parameters
Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Thiemo Seufer <ths@linux-mips.org> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:

committed by
James Bottomley

parent
0888f4c331
commit
7a34766fdc
@@ -451,18 +451,15 @@ struct nvram {
|
||||
uint16_t unused_38; /* 38, 39 */
|
||||
|
||||
struct {
|
||||
union {
|
||||
uint8_t c;
|
||||
struct {
|
||||
uint8_t renegotiate_on_error:1;
|
||||
uint8_t stop_queue_on_check:1;
|
||||
uint8_t auto_request_sense:1;
|
||||
uint8_t tag_queuing:1;
|
||||
uint8_t enable_sync:1;
|
||||
uint8_t enable_wide:1;
|
||||
uint8_t parity_checking:1;
|
||||
uint8_t disconnect_allowed:1;
|
||||
} f;
|
||||
struct {
|
||||
uint8_t renegotiate_on_error:1;
|
||||
uint8_t stop_queue_on_check:1;
|
||||
uint8_t auto_request_sense:1;
|
||||
uint8_t tag_queuing:1;
|
||||
uint8_t enable_sync:1;
|
||||
uint8_t enable_wide:1;
|
||||
uint8_t parity_checking:1;
|
||||
uint8_t disconnect_allowed:1;
|
||||
} parameter; /* 40 */
|
||||
|
||||
uint8_t execution_throttle; /* 41 */
|
||||
|
Reference in New Issue
Block a user