mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00: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:
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user