[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1ccf5640-e95d-5138-5146-c45cf136da2b@inria.fr>
Date: Tue, 18 Oct 2022 12:58:07 +0200 (CEST)
From: Julia Lawall <julia.lawall@...ia.fr>
To: Tanjuate Brunostar <tanjubrunostar0@...il.com>
cc: gregkh@...uxfoundation.org, linux-staging@...ts.linux.dev,
linux-kernel@...r.kernel.org, outreachy@...ts.linux.dev
Subject: Re: [PATCH] staging: rts5208: split long line of code
On Tue, 18 Oct 2022, Tanjuate Brunostar wrote:
> Fix checkpatch warning by splitting up a long line of code, improving
> code readability
It doesn't seem like a great solution to break the expression in the
middle of the (). You could put the whole right hand side expression on
the next line indented with one tab.
julia
>
> Signed-off-by: Tanjuate Brunostar <tanjubrunostar0@...il.com>
> ---
> drivers/staging/rts5208/sd.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rts5208/sd.c b/drivers/staging/rts5208/sd.c
> index 4643127a87ca..6503db5bb874 100644
> --- a/drivers/staging/rts5208/sd.c
> +++ b/drivers/staging/rts5208/sd.c
> @@ -4505,7 +4505,8 @@ int sd_execute_write_data(struct scsi_cmnd *srb, struct rtsx_chip *chip)
> if (CHK_SD(sd_card)) {
> retval = reset_sd(chip);
> if (retval != STATUS_SUCCESS) {
> - sd_card->sd_lock_status &= ~(SD_UNLOCK_POW_ON | SD_SDR_RST);
> + sd_card->sd_lock_status &= ~(SD_UNLOCK_POW_ON |
> + SD_SDR_RST);
> goto sd_execute_write_cmd_failed;
> }
> }
> --
> 2.34.1
>
>
>
Powered by blists - more mailing lists