[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAAhSdy3LvzR4H_rYvacER87n7fakU9EzE17vA3D+ASczR24=5g@mail.gmail.com>
Date: Tue, 16 Nov 2021 19:57:59 +0530
From: Anup Patel <anup@...infault.org>
To: cgel.zte@...il.com
Cc: Anup Patel <anup.patel@....com>, Atish Patra <atish.patra@....com>,
Paul Walmsley <paul.walmsley@...ive.com>,
Palmer Dabbelt <palmer@...belt.com>,
Albert Ou <aou@...s.berkeley.edu>,
KVM General <kvm@...r.kernel.org>,
kvm-riscv@...ts.infradead.org,
linux-riscv <linux-riscv@...ts.infradead.org>,
"linux-kernel@...r.kernel.org List" <linux-kernel@...r.kernel.org>,
Zhang Mingyu <zhang.mingyu@....com.cn>,
Zeal Robot <zealci@....com.cn>
Subject: Re: [PATCH] RISC-V: KVM:Remove unneeded semicolon
On Wed, Nov 3, 2021 at 12:15 PM <cgel.zte@...il.com> wrote:
>
> From: Zhang Mingyu <zhang.mingyu@....com.cn>
>
> Eliminate the following coccinelle check warning:
> arch/riscv/kvm/vcpu.c:167:2-3
> arch/riscv/kvm/vcpu.c:204:2-3
>
> Reported-by: Zeal Robot <zealci@....com.cn>
> Signed-off-by: Zhang Mingyu <zhang.mingyu@....com.cn>
Thanks but this is already fixed by following patch:
https://www.spinics.net/lists/kvm/msg257614.html
Regards,
Anup
> ---
> arch/riscv/kvm/vcpu.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/riscv/kvm/vcpu.c b/arch/riscv/kvm/vcpu.c
> index e92ba3e5db8c..e3d3aed46184 100644
> --- a/arch/riscv/kvm/vcpu.c
> +++ b/arch/riscv/kvm/vcpu.c
> @@ -164,7 +164,7 @@ static int kvm_riscv_vcpu_get_reg_config(struct kvm_vcpu *vcpu,
> break;
> default:
> return -EINVAL;
> - };
> + }
>
> if (copy_to_user(uaddr, ®_val, KVM_REG_SIZE(reg->id)))
> return -EFAULT;
> @@ -201,7 +201,7 @@ static int kvm_riscv_vcpu_set_reg_config(struct kvm_vcpu *vcpu,
> break;
> default:
> return -EINVAL;
> - };
> + }
>
> return 0;
> }
> --
> 2.25.1
>
Powered by blists - more mailing lists