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:
Samuel Sjöberg 2022-03-02 16:03:28 +01:00 committed by Greg Kroah-Hartman
parent b497e06d27
commit b25c7dc13f
1 changed files with 4 additions and 5 deletions

View File

@ -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;
}