mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
staging: rts5208/ms.c: change the label name to respect the coding style
This patch changes label names using camel case to snake case as well as giving a new name representing what will be done after the label. Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d5b7d2b02c
commit
541e4d2d1d
@@ -4302,7 +4302,7 @@ int mg_get_local_EKB(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
if (retval != STATUS_SUCCESS) {
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MG_KEY_FAIL_NOT_AUTHEN);
|
||||
rtsx_trace(chip);
|
||||
goto GetEKBFinish;
|
||||
goto free_buffer;
|
||||
}
|
||||
|
||||
retval = ms_transfer_data(chip, MS_TM_AUTO_READ, PRO_READ_LONG_DATA,
|
||||
@@ -4311,7 +4311,7 @@ int mg_get_local_EKB(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MG_KEY_FAIL_NOT_AUTHEN);
|
||||
rtsx_clear_ms_error(chip);
|
||||
rtsx_trace(chip);
|
||||
goto GetEKBFinish;
|
||||
goto free_buffer;
|
||||
}
|
||||
if (check_ms_err(chip)) {
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MG_KEY_FAIL_NOT_AUTHEN);
|
||||
@@ -4323,7 +4323,7 @@ int mg_get_local_EKB(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
bufflen = min_t(int, 1052, scsi_bufflen(srb));
|
||||
rtsx_stor_set_xfer_buf(buf, bufflen, srb);
|
||||
|
||||
GetEKBFinish:
|
||||
free_buffer:
|
||||
kfree(buf);
|
||||
return retval;
|
||||
}
|
||||
@@ -4555,7 +4555,7 @@ int mg_get_ICV(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
if (retval != STATUS_SUCCESS) {
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MEDIA_UNRECOVER_READ_ERR);
|
||||
rtsx_trace(chip);
|
||||
goto GetICVFinish;
|
||||
goto free_buffer;
|
||||
}
|
||||
|
||||
retval = ms_transfer_data(chip, MS_TM_AUTO_READ, PRO_READ_LONG_DATA,
|
||||
@@ -4564,7 +4564,7 @@ int mg_get_ICV(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MEDIA_UNRECOVER_READ_ERR);
|
||||
rtsx_clear_ms_error(chip);
|
||||
rtsx_trace(chip);
|
||||
goto GetICVFinish;
|
||||
goto free_buffer;
|
||||
}
|
||||
if (check_ms_err(chip)) {
|
||||
set_sense_type(chip, lun, SENSE_TYPE_MEDIA_UNRECOVER_READ_ERR);
|
||||
@@ -4576,7 +4576,7 @@ int mg_get_ICV(struct scsi_cmnd *srb, struct rtsx_chip *chip)
|
||||
bufflen = min_t(int, 1028, scsi_bufflen(srb));
|
||||
rtsx_stor_set_xfer_buf(buf, bufflen, srb);
|
||||
|
||||
GetICVFinish:
|
||||
free_buffer:
|
||||
kfree(buf);
|
||||
return retval;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user