aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/bfa/bfa_fcxp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/bfa/bfa_fcxp.c')
-rw-r--r--drivers/scsi/bfa/bfa_fcxp.c8
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
205static void 205static 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
709bfa_fcxp_abort(struct bfa_fcxp_s *fcxp) 709bfa_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
715void 715void