Commit cd4b7758 authored by Wayne Porter's avatar Wayne Porter Committed by Greg Kroah-Hartman

staging: rts5208: rtsx.c: CamelCase

Make camel case labels all lowercase
Signed-off-by: default avatarWayne Porter <wporter82@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7e0ea476
...@@ -438,7 +438,7 @@ static int rtsx_control_thread(void *__dev) ...@@ -438,7 +438,7 @@ static int rtsx_control_thread(void *__dev)
/* has the command aborted ? */ /* has the command aborted ? */
if (rtsx_chk_stat(chip, RTSX_STAT_ABORT)) { if (rtsx_chk_stat(chip, RTSX_STAT_ABORT)) {
chip->srb->result = DID_ABORT << 16; chip->srb->result = DID_ABORT << 16;
goto SkipForAbort; goto skip_for_abort;
} }
scsi_unlock(host); scsi_unlock(host);
...@@ -485,7 +485,7 @@ static int rtsx_control_thread(void *__dev) ...@@ -485,7 +485,7 @@ static int rtsx_control_thread(void *__dev)
else if (chip->srb->result != DID_ABORT << 16) { else if (chip->srb->result != DID_ABORT << 16) {
chip->srb->scsi_done(chip->srb); chip->srb->scsi_done(chip->srb);
} else { } else {
SkipForAbort: skip_for_abort:
dev_err(&dev->pci->dev, "scsi command aborted\n"); dev_err(&dev->pci->dev, "scsi command aborted\n");
} }
...@@ -602,7 +602,7 @@ static irqreturn_t rtsx_interrupt(int irq, void *dev_id) ...@@ -602,7 +602,7 @@ static irqreturn_t rtsx_interrupt(int irq, void *dev_id)
dev->trans_result = TRANS_RESULT_FAIL; dev->trans_result = TRANS_RESULT_FAIL;
if (dev->done) if (dev->done)
complete(dev->done); complete(dev->done);
goto Exit; goto exit;
} }
} }
...@@ -624,7 +624,7 @@ static irqreturn_t rtsx_interrupt(int irq, void *dev_id) ...@@ -624,7 +624,7 @@ static irqreturn_t rtsx_interrupt(int irq, void *dev_id)
} }
} }
Exit: exit:
spin_unlock(&dev->reg_lock); spin_unlock(&dev->reg_lock);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
......
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