[-next] ARM: shmobile: Remove unneeded semicolon
Commit Message
./arch/arm/mach-shmobile/smp-sh73a0.c:52:2-3: Unneeded semicolon
./arch/arm/mach-shmobile/smp-r8a7779.c:46:2-3: Unneeded semicolon
./arch/arm/mach-shmobile/pm-rcar-gen2.c:58:2-3: Unneeded semicolon
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=6704
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
arch/arm/mach-shmobile/pm-rcar-gen2.c | 2 +-
arch/arm/mach-shmobile/smp-r8a7779.c | 2 +-
arch/arm/mach-shmobile/smp-sh73a0.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Comments
Hi Yang,
On Wed, Sep 27, 2023 at 3:02 AM Yang Li <yang.lee@linux.alibaba.com> wrote:
> ./arch/arm/mach-shmobile/smp-sh73a0.c:52:2-3: Unneeded semicolon
> ./arch/arm/mach-shmobile/smp-r8a7779.c:46:2-3: Unneeded semicolon
> ./arch/arm/mach-shmobile/pm-rcar-gen2.c:58:2-3: Unneeded semicolon
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=6704
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Thanks for your patch!
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
As the offending commits are not yet upstream, I will fold the fixes
into the existing commits.
Gr{oetje,eeting}s,
Geert
@@ -55,7 +55,7 @@ void __init rcar_gen2_pm_init(void)
if (!request_mem_region(0, SZ_256K, "Boot Area")) {
pr_err("Failed to request boot area\n");
return;
- };
+ }
for_each_of_cpu_node(np) {
if (of_device_is_compatible(np, "arm,cortex-a15"))
@@ -43,7 +43,7 @@ static void __init r8a7779_smp_prepare_cpus(unsigned int max_cpus)
if (!request_mem_region(0, SZ_4K, "Boot Area")) {
pr_err("Failed to request boot area\n");
return;
- };
+ }
base = ioremap(HPBREG_BASE, 0x1000);
@@ -49,7 +49,7 @@ static void __init sh73a0_smp_prepare_cpus(unsigned int max_cpus)
if (!request_mem_region(0, SZ_4K, "Boot Area")) {
pr_err("Failed to request boot area\n");
return;
- };
+ }
/* Map the reset vector (in headsmp.S) */
ap = ioremap(AP_BASE, PAGE_SIZE);