Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: lpfc: fix a handful of indentation issues

There are a handful of statements that are indented incorrectly. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: James Smart <james.smart@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Colin Ian King and committed by
Martin K. Petersen
258f84fa 7f8e12f1

+8 -8
+2 -2
drivers/scsi/lpfc/lpfc_bsg.c
··· 2947 2947 cmd->un.cont64[i].addrLow = putPaddrLow(mp[i]->phys); 2948 2948 cmd->un.cont64[i].tus.f.bdeSize = 2949 2949 ((struct lpfc_dmabufext *)mp[i])->size; 2950 - cmd->ulpBdeCount = ++i; 2950 + cmd->ulpBdeCount = ++i; 2951 2951 2952 2952 if ((--num_bde > 0) && (i < 2)) 2953 2953 continue; ··· 4682 4682 * Don't allow mailbox commands to be sent when blocked or when in 4683 4683 * the middle of discovery 4684 4684 */ 4685 - if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO) { 4685 + if (phba->sli.sli_flag & LPFC_BLOCK_MGMT_IO) { 4686 4686 rc = -EAGAIN; 4687 4687 goto job_done; 4688 4688 }
+2 -2
drivers/scsi/lpfc/lpfc_debugfs.c
··· 1833 1833 int rc = -ENOMEM; 1834 1834 1835 1835 if (!lpfc_debugfs_max_disc_trc) { 1836 - rc = -ENOSPC; 1836 + rc = -ENOSPC; 1837 1837 goto out; 1838 1838 } 1839 1839 ··· 1883 1883 int rc = -ENOMEM; 1884 1884 1885 1885 if (!lpfc_debugfs_max_slow_ring_trc) { 1886 - rc = -ENOSPC; 1886 + rc = -ENOSPC; 1887 1887 goto out; 1888 1888 } 1889 1889
+1 -1
drivers/scsi/lpfc/lpfc_init.c
··· 10119 10119 dev_printk(KERN_ERR, &pdev->dev, 10120 10120 "ioremap failed for SLI4 PCI config " 10121 10121 "registers.\n"); 10122 - goto out; 10122 + goto out; 10123 10123 } 10124 10124 lpfc_sli4_bar0_register_memmap(phba, if_type); 10125 10125 }
+2 -2
drivers/scsi/lpfc/lpfc_mbox.c
··· 2095 2095 if (phba->nvmet_support) { 2096 2096 bf_set(lpfc_mbx_rq_ftr_rq_mrqp, &mboxq->u.mqe.un.req_ftrs, 1); 2097 2097 /* iaab/iaar NOT set for now */ 2098 - bf_set(lpfc_mbx_rq_ftr_rq_iaab, &mboxq->u.mqe.un.req_ftrs, 0); 2099 - bf_set(lpfc_mbx_rq_ftr_rq_iaar, &mboxq->u.mqe.un.req_ftrs, 0); 2098 + bf_set(lpfc_mbx_rq_ftr_rq_iaab, &mboxq->u.mqe.un.req_ftrs, 0); 2099 + bf_set(lpfc_mbx_rq_ftr_rq_iaar, &mboxq->u.mqe.un.req_ftrs, 0); 2100 2100 } 2101 2101 return; 2102 2102 }
+1 -1
drivers/scsi/lpfc/lpfc_sli.c
··· 1008 1008 if (!ndlp->active_rrqs_xri_bitmap) 1009 1009 return 0; 1010 1010 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap)) 1011 - return 1; 1011 + return 1; 1012 1012 else 1013 1013 return 0; 1014 1014 }