diff mbox series

scsi: csiostor: clean up indentation issue

Message ID 20190926115716.3698-1-colin.king@canonical.com (mailing list archive)
State Mainlined
Commit 9adc2a5c3b7df39c8f7ede1edf8232a377694829
Headers show
Series scsi: csiostor: clean up indentation issue | expand

Commit Message

Colin King Sept. 26, 2019, 11:57 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

The goto statement is indented incorrectly, remove the extraneous tab.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/csiostor/csio_mb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Martin K. Petersen Oct. 1, 2019, 3:10 a.m. UTC | #1
Colin,

> The goto statement is indented incorrectly, remove the extraneous tab.

Applied to 5.5/scsi-queue. Thanks!
diff mbox series

Patch

diff --git a/drivers/scsi/csiostor/csio_mb.c b/drivers/scsi/csiostor/csio_mb.c
index 6f13673d6aa0..94810b19e747 100644
--- a/drivers/scsi/csiostor/csio_mb.c
+++ b/drivers/scsi/csiostor/csio_mb.c
@@ -1210,7 +1210,7 @@  csio_mb_issue(struct csio_hw *hw, struct csio_mb *mbp)
 		   !csio_is_hw_intr_enabled(hw)) {
 		csio_err(hw, "Cannot issue mailbox in interrupt mode 0x%x\n",
 			 *((uint8_t *)mbp->mb));
-			goto error_out;
+		goto error_out;
 	}
 
 	if (mbm->mcurrent != NULL) {