diff options
author | Jing Huang <huangj@brocade.com> | 2009-09-25 15:29:54 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 13:00:09 -0500 |
commit | f8ceafde6f5bf6b4b7087c7f5e9da1b2a5284a2e (patch) | |
tree | 8c726ba2d6511a2a2be1adbd41af1cf09ecffb1d /drivers/scsi/bfa/include/protocol/fc.h | |
parent | 8798a694da59486e4a3ff0abeec183202fb34c20 (diff) |
[SCSI] bfa: fixed checkpatch errors for bfad files
This patch fixes checkpatch errors/warnings in bfad files.
Signed-off-by: Jing Huang <huangj@brocade.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/bfa/include/protocol/fc.h')
-rw-r--r-- | drivers/scsi/bfa/include/protocol/fc.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/scsi/bfa/include/protocol/fc.h b/drivers/scsi/bfa/include/protocol/fc.h index 3e39ba58cfb5..14969eecf6a9 100644 --- a/drivers/scsi/bfa/include/protocol/fc.h +++ b/drivers/scsi/bfa/include/protocol/fc.h | |||
@@ -486,14 +486,14 @@ struct fc_rsi_s { | |||
486 | * see FC-PH-X table 113 & 115 for explanation also FCP table 8 | 486 | * see FC-PH-X table 113 & 115 for explanation also FCP table 8 |
487 | */ | 487 | */ |
488 | struct fc_prli_params_s{ | 488 | struct fc_prli_params_s{ |
489 | u32 reserved: 16; | 489 | u32 reserved:16; |
490 | #ifdef __BIGENDIAN | 490 | #ifdef __BIGENDIAN |
491 | u32 reserved1: 5; | 491 | u32 reserved1:5; |
492 | u32 rec_support : 1; | 492 | u32 rec_support:1; |
493 | u32 task_retry_id : 1; | 493 | u32 task_retry_id:1; |
494 | u32 retry : 1; | 494 | u32 retry:1; |
495 | 495 | ||
496 | u32 confirm : 1; | 496 | u32 confirm:1; |
497 | u32 doverlay:1; | 497 | u32 doverlay:1; |
498 | u32 initiator:1; | 498 | u32 initiator:1; |
499 | u32 target:1; | 499 | u32 target:1; |
@@ -502,10 +502,10 @@ struct fc_prli_params_s{ | |||
502 | u32 rxrdisab:1; | 502 | u32 rxrdisab:1; |
503 | u32 wxrdisab:1; | 503 | u32 wxrdisab:1; |
504 | #else | 504 | #else |
505 | u32 retry : 1; | 505 | u32 retry:1; |
506 | u32 task_retry_id : 1; | 506 | u32 task_retry_id:1; |
507 | u32 rec_support : 1; | 507 | u32 rec_support:1; |
508 | u32 reserved1: 5; | 508 | u32 reserved1:5; |
509 | 509 | ||
510 | u32 wxrdisab:1; | 510 | u32 wxrdisab:1; |
511 | u32 rxrdisab:1; | 511 | u32 rxrdisab:1; |
@@ -514,7 +514,7 @@ struct fc_prli_params_s{ | |||
514 | u32 target:1; | 514 | u32 target:1; |
515 | u32 initiator:1; | 515 | u32 initiator:1; |
516 | u32 doverlay:1; | 516 | u32 doverlay:1; |
517 | u32 confirm : 1; | 517 | u32 confirm:1; |
518 | #endif | 518 | #endif |
519 | }; | 519 | }; |
520 | 520 | ||