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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAMRc=Mcp=hjTLmwKNPvBEVdSrV5W23M9a-vO2OXRLkKN5318jA@mail.gmail.com>
Date: Wed, 10 Jul 2024 15:01:36 +0200
From: Bartosz Golaszewski <brgl@...ev.pl>
To: Arnd Bergmann <arnd@...db.de>
Cc: linux@...linux.org.uk, khilman@...prootsystems.com, nsekhar@...com, 
	linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org, 
	Chen Ni <nichen@...as.ac.cn>
Subject: Re: [PATCH v2] ARM: davinci: Convert comma to semicolon

On Wed, Jul 10, 2024 at 10:17 AM Chen Ni <nichen@...as.ac.cn> wrote:
>
> Replace a comma between expression statements by a semicolon.
>
> Fixes: efc1bb8a6fd5 ("davinci: add power management support")
> Signed-off-by: Chen Ni <nichen@...as.ac.cn>
> ---
> Changelog:
>
> v1 -> v2:
>
> 1. Add Fixes tag.
> ---
>  arch/arm/mach-davinci/pm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-davinci/pm.c b/arch/arm/mach-davinci/pm.c
> index 8aa39db095d7..2c5155bd376b 100644
> --- a/arch/arm/mach-davinci/pm.c
> +++ b/arch/arm/mach-davinci/pm.c
> @@ -61,7 +61,7 @@ static void davinci_pm_suspend(void)
>
>         /* Configure sleep count in deep sleep register */
>         val = __raw_readl(pm_config.deepsleep_reg);
> -       val &= ~DEEPSLEEP_SLEEPCOUNT_MASK,
> +       val &= ~DEEPSLEEP_SLEEPCOUNT_MASK;
>         val |= pm_config.sleepcount;
>         __raw_writel(val, pm_config.deepsleep_reg);
>
> --
> 2.25.1
>

Acked-by: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>

Arnd,

I don't want to spam you with a late PR with just this oneliner. Can
you pick it up directly if it's not too late in this cycle?

Bart

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ