mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 06:41:06 -04:00
Staging: rts5208: Introduce a new variable to shorten line length and increase readability
The variable block_no is introduced so as to shorten line length in the long assignment statement and increase readability. Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ae89faccc6
commit
7ef4ec4a65
@@ -2030,6 +2030,8 @@ static int ms_init_l2p_tbl(struct rtsx_chip *chip)
|
||||
|
||||
reg_addr = PPBUF_BASE2;
|
||||
for (i = 0; i < (((ms_card->total_block >> 9) * 10) + 1); i++) {
|
||||
int block_no;
|
||||
|
||||
retval = rtsx_read_register(chip, reg_addr++, &val1);
|
||||
if (retval != STATUS_SUCCESS)
|
||||
TRACE_GOTO(chip, INIT_FAIL);
|
||||
@@ -2043,7 +2045,9 @@ static int ms_init_l2p_tbl(struct rtsx_chip *chip)
|
||||
break;
|
||||
|
||||
seg_no = defect_block / 512;
|
||||
ms_card->segment[seg_no].defect_list[ms_card->segment[seg_no].disable_count++] = defect_block;
|
||||
|
||||
block_no = ms_card->segment[seg_no].disable_count++;
|
||||
ms_card->segment[seg_no].defect_list[block_no] = defect_block;
|
||||
}
|
||||
|
||||
for (i = 0; i < ms_card->segment_cnt; i++) {
|
||||
|
||||
Reference in New Issue
Block a user