All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: rts5208: fix Lines should not end with a '('.
@ 2022-03-02 15:03 Samuel Sjöberg
  0 siblings, 0 replies; 2+ messages in thread
From: Samuel Sjöberg @ 2022-03-02 15:03 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-staging, linux-kernel, info

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>
---
 drivers/staging/rts5208/ms.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/rts5208/ms.c b/drivers/staging/rts5208/ms.c
index 2a6fab5c117a..14449f8afad5 100644
--- a/drivers/staging/rts5208/ms.c
+++ b/drivers/staging/rts5208/ms.c
@@ -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;
 				}
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] staging: rts5208: fix Lines should not end with a '('.
       [not found] <20220301205936.3096-1-info@samuelsjoberg.se>
@ 2022-03-01 21:33 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2022-03-01 21:33 UTC (permalink / raw)
  To: Samuel Sjöberg; +Cc: linux-staging, linux-kernel

On Tue, Mar 01, 2022 at 09:59:36PM +0100, Samuel Sjöberg wrote:
> Fix the following error reported by checkpatch.pl:
> 
> CHECK: Lines should not end with a '('
> +                                       retval = ms_transfer_tpc(
> 
> Signed-off-by: Samuel Sjöberg <info@samuelsjoberg.se>
> ---
>  drivers/staging/rts5208/ms.c | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)

This does not show up on lore.kernel.org, are you sure your email domain
is correct?  I get a failure when trying to verify your email using
normal tools, so I think it is getting dropped.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-02 15:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 15:03 [PATCH] staging: rts5208: fix Lines should not end with a '(' Samuel Sjöberg
     [not found] <20220301205936.3096-1-info@samuelsjoberg.se>
2022-03-01 21:33 ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.