mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 14:56:54 -04:00
staging: rts5208: fix Lines should not end with a '('.
Fix the following check reported by checkpatch.pl:
CHECK: Lines should not end with a '('
retval = ms_transfer_tpc(
Signed-off-by: Samuel Sjöberg <info@samuelsjoberg.se>
Link: https://lore.kernel.org/r/20220302150328.2722-1-info@samuelsjoberg.se
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b497e06d27
commit
b25c7dc13f
@@ -1749,11 +1749,10 @@ static int ms_copy_page(struct rtsx_chip *chip, u16 old_blk, u16 new_blk,
|
||||
|
||||
for (rty_cnt = 0; rty_cnt < MS_MAX_RETRY_COUNT;
|
||||
rty_cnt++) {
|
||||
retval = ms_transfer_tpc(
|
||||
chip,
|
||||
MS_TM_NORMAL_WRITE,
|
||||
WRITE_PAGE_DATA,
|
||||
0, NO_WAIT_INT);
|
||||
retval = ms_transfer_tpc(chip,
|
||||
MS_TM_NORMAL_WRITE,
|
||||
WRITE_PAGE_DATA,
|
||||
0, NO_WAIT_INT);
|
||||
if (retval == STATUS_SUCCESS)
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user