diff options
Diffstat (limited to 'drivers/scsi/bfa/bfa_rport.c')
-rw-r--r-- | drivers/scsi/bfa/bfa_rport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/bfa/bfa_rport.c b/drivers/scsi/bfa/bfa_rport.c index 16da77a8db28..3e1990a74258 100644 --- a/drivers/scsi/bfa/bfa_rport.c +++ b/drivers/scsi/bfa/bfa_rport.c | |||
@@ -677,7 +677,7 @@ bfa_rport_alloc(struct bfa_rport_mod_s *mod) | |||
677 | if (rport) | 677 | if (rport) |
678 | list_add_tail(&rport->qe, &mod->rp_active_q); | 678 | list_add_tail(&rport->qe, &mod->rp_active_q); |
679 | 679 | ||
680 | return (rport); | 680 | return rport; |
681 | } | 681 | } |
682 | 682 | ||
683 | static void | 683 | static void |
@@ -834,7 +834,7 @@ bfa_rport_create(struct bfa_s *bfa, void *rport_drv) | |||
834 | rp = bfa_rport_alloc(BFA_RPORT_MOD(bfa)); | 834 | rp = bfa_rport_alloc(BFA_RPORT_MOD(bfa)); |
835 | 835 | ||
836 | if (rp == NULL) | 836 | if (rp == NULL) |
837 | return (NULL); | 837 | return NULL; |
838 | 838 | ||
839 | rp->bfa = bfa; | 839 | rp->bfa = bfa; |
840 | rp->rport_drv = rport_drv; | 840 | rp->rport_drv = rport_drv; |
@@ -843,7 +843,7 @@ bfa_rport_create(struct bfa_s *bfa, void *rport_drv) | |||
843 | bfa_assert(bfa_sm_cmp_state(rp, bfa_rport_sm_uninit)); | 843 | bfa_assert(bfa_sm_cmp_state(rp, bfa_rport_sm_uninit)); |
844 | bfa_sm_send_event(rp, BFA_RPORT_SM_CREATE); | 844 | bfa_sm_send_event(rp, BFA_RPORT_SM_CREATE); |
845 | 845 | ||
846 | return (rp); | 846 | return rp; |
847 | } | 847 | } |
848 | 848 | ||
849 | void | 849 | void |