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/bfa_fcxp.c | |
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/bfa_fcxp.c')
-rw-r--r-- | drivers/scsi/bfa/bfa_fcxp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/bfa/bfa_fcxp.c b/drivers/scsi/bfa/bfa_fcxp.c index 4754a0e9006a..cf0ad6782686 100644 --- a/drivers/scsi/bfa/bfa_fcxp.c +++ b/drivers/scsi/bfa/bfa_fcxp.c | |||
@@ -199,7 +199,7 @@ bfa_fcxp_get(struct bfa_fcxp_mod_s *fm) | |||
199 | if (fcxp) | 199 | if (fcxp) |
200 | list_add_tail(&fcxp->qe, &fm->fcxp_active_q); | 200 | list_add_tail(&fcxp->qe, &fm->fcxp_active_q); |
201 | 201 | ||
202 | return (fcxp); | 202 | return fcxp; |
203 | } | 203 | } |
204 | 204 | ||
205 | static void | 205 | static void |
@@ -503,7 +503,7 @@ bfa_fcxp_alloc(void *caller, struct bfa_s *bfa, int nreq_sgles, | |||
503 | 503 | ||
504 | fcxp = bfa_fcxp_get(BFA_FCXP_MOD(bfa)); | 504 | fcxp = bfa_fcxp_get(BFA_FCXP_MOD(bfa)); |
505 | if (fcxp == NULL) | 505 | if (fcxp == NULL) |
506 | return (NULL); | 506 | return NULL; |
507 | 507 | ||
508 | bfa_trc(bfa, fcxp->fcxp_tag); | 508 | bfa_trc(bfa, fcxp->fcxp_tag); |
509 | 509 | ||
@@ -568,7 +568,7 @@ bfa_fcxp_alloc(void *caller, struct bfa_s *bfa, int nreq_sgles, | |||
568 | } | 568 | } |
569 | } | 569 | } |
570 | 570 | ||
571 | return (fcxp); | 571 | return fcxp; |
572 | } | 572 | } |
573 | 573 | ||
574 | /** | 574 | /** |
@@ -709,7 +709,7 @@ bfa_status_t | |||
709 | bfa_fcxp_abort(struct bfa_fcxp_s *fcxp) | 709 | bfa_fcxp_abort(struct bfa_fcxp_s *fcxp) |
710 | { | 710 | { |
711 | bfa_assert(0); | 711 | bfa_assert(0); |
712 | return (BFA_STATUS_OK); | 712 | return BFA_STATUS_OK; |
713 | } | 713 | } |
714 | 714 | ||
715 | void | 715 | void |