aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnil Gurumurthy <anil.gurumurthy@qlogic.com>2015-08-13 06:41:51 -0400
committerJames Bottomley <JBottomley@Odin.com>2015-09-06 14:36:50 -0400
commitb7f4d6343820af5c2dc3979e91d85e71e638cd3d (patch)
tree5da5086632525eb5cfee0647c47ac5edec955856
parent0c416b54f29151a31999868d59c64ace11589d1b (diff)
bfa: Fix indentation
Signed-off-by: Anil Gurumurthy <anil.gurumurthy@qlogic.com> Tested-by : Sudarasana Kalluru <sudarsana.kalluru@qlogic.com> Reviewed-by: Ewan D. Milne <emilne@redhat.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
-rw-r--r--drivers/scsi/bfa/bfa_ioc.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/scsi/bfa/bfa_ioc.c b/drivers/scsi/bfa/bfa_ioc.c
index 315d6d6dcfc8..4e7104461f09 100644
--- a/drivers/scsi/bfa/bfa_ioc.c
+++ b/drivers/scsi/bfa/bfa_ioc.c
@@ -3665,19 +3665,19 @@ bfa_cb_sfp_state_query(struct bfa_sfp_s *sfp)
3665 if (sfp->state_query_cbfn) 3665 if (sfp->state_query_cbfn)
3666 sfp->state_query_cbfn(sfp->state_query_cbarg, 3666 sfp->state_query_cbfn(sfp->state_query_cbarg,
3667 sfp->status); 3667 sfp->status);
3668 sfp->media = NULL; 3668 sfp->media = NULL;
3669 } 3669 }
3670 3670
3671 if (sfp->portspeed) { 3671 if (sfp->portspeed) {
3672 sfp->status = bfa_sfp_speed_valid(sfp, sfp->portspeed); 3672 sfp->status = bfa_sfp_speed_valid(sfp, sfp->portspeed);
3673 if (sfp->state_query_cbfn) 3673 if (sfp->state_query_cbfn)
3674 sfp->state_query_cbfn(sfp->state_query_cbarg, 3674 sfp->state_query_cbfn(sfp->state_query_cbarg,
3675 sfp->status); 3675 sfp->status);
3676 sfp->portspeed = BFA_PORT_SPEED_UNKNOWN; 3676 sfp->portspeed = BFA_PORT_SPEED_UNKNOWN;
3677 } 3677 }
3678 3678
3679 sfp->state_query_lock = 0; 3679 sfp->state_query_lock = 0;
3680 sfp->state_query_cbfn = NULL; 3680 sfp->state_query_cbfn = NULL;
3681} 3681}
3682 3682
3683/* 3683/*