Commit 009b7156 authored by Colin Ian King's avatar Colin Ian King Committed by Martin K. Petersen

scsi: bfa: clean up a couple of indentation issues

There is a break statement with an extra space that needs removed and a
call to bfa_trc that is indented one level too much. Fix these.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent efad0462
...@@ -3819,7 +3819,7 @@ bfa_sfp_scn(struct bfa_sfp_s *sfp, struct bfi_mbmsg_s *msg) ...@@ -3819,7 +3819,7 @@ bfa_sfp_scn(struct bfa_sfp_s *sfp, struct bfi_mbmsg_s *msg)
sfp->state = BFA_SFP_STATE_REMOVED; sfp->state = BFA_SFP_STATE_REMOVED;
sfp->data_valid = 0; sfp->data_valid = 0;
bfa_sfp_scn_aen_post(sfp, rsp); bfa_sfp_scn_aen_post(sfp, rsp);
break; break;
case BFA_SFP_SCN_FAILED: case BFA_SFP_SCN_FAILED:
sfp->state = BFA_SFP_STATE_FAILED; sfp->state = BFA_SFP_STATE_FAILED;
sfp->data_valid = 0; sfp->data_valid = 0;
...@@ -5763,7 +5763,7 @@ bfa_phy_intr(void *phyarg, struct bfi_mbmsg_s *msg) ...@@ -5763,7 +5763,7 @@ bfa_phy_intr(void *phyarg, struct bfi_mbmsg_s *msg)
(struct bfa_phy_stats_s *) phy->ubuf; (struct bfa_phy_stats_s *) phy->ubuf;
bfa_phy_ntoh32((u32 *)stats, (u32 *)phy->dbuf_kva, bfa_phy_ntoh32((u32 *)stats, (u32 *)phy->dbuf_kva,
sizeof(struct bfa_phy_stats_s)); sizeof(struct bfa_phy_stats_s));
bfa_trc(phy, stats->status); bfa_trc(phy, stats->status);
} }
phy->status = status; phy->status = status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment