lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 19 Jan 2021 14:42:59 +0100
From:   Ulf Hansson <ulf.hansson@...aro.org>
To:     Zheng Yongjun <zhengyongjun3@...wei.com>
Cc:     "linux-mmc@...r.kernel.org" <linux-mmc@...r.kernel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH -next] mmc: core: convert comma to semicolon

On Wed, 16 Dec 2020 at 14:17, Zheng Yongjun <zhengyongjun3@...wei.com> wrote:
>
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Zheng Yongjun <zhengyongjun3@...wei.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  drivers/mmc/core/core.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
> index d42037f0f10d..07c5f242f28a 100644
> --- a/drivers/mmc/core/core.c
> +++ b/drivers/mmc/core/core.c
> @@ -547,10 +547,10 @@ int mmc_cqe_recovery(struct mmc_host *host)
>         host->cqe_ops->cqe_recovery_start(host);
>
>         memset(&cmd, 0, sizeof(cmd));
> -       cmd.opcode       = MMC_STOP_TRANSMISSION,
> -       cmd.flags        = MMC_RSP_R1B | MMC_CMD_AC,
> +       cmd.opcode       = MMC_STOP_TRANSMISSION;
> +       cmd.flags        = MMC_RSP_R1B | MMC_CMD_AC;
>         cmd.flags       &= ~MMC_RSP_CRC; /* Ignore CRC */
> -       cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT,
> +       cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT;
>         mmc_wait_for_cmd(host, &cmd, 0);
>
>         memset(&cmd, 0, sizeof(cmd));
> @@ -558,7 +558,7 @@ int mmc_cqe_recovery(struct mmc_host *host)
>         cmd.arg          = 1; /* Discard entire queue */
>         cmd.flags        = MMC_RSP_R1B | MMC_CMD_AC;
>         cmd.flags       &= ~MMC_RSP_CRC; /* Ignore CRC */
> -       cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT,
> +       cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT;
>         err = mmc_wait_for_cmd(host, &cmd, 0);
>
>         host->cqe_ops->cqe_recovery_finish(host);
> --
> 2.22.0
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ