* [PATCH] smccc/kvm_guest: Remove the accidental semicolon
@ 2025-04-02 13:44 Shameer Kolothum
2025-04-02 13:58 ` Sudeep Holla
0 siblings, 1 reply; 5+ messages in thread
From: Shameer Kolothum @ 2025-04-02 13:44 UTC (permalink / raw)
To: kvmarm, linux-arm-kernel, oliver.upton
Cc: maz, mark.rutland, lpieralisi, sudeep.holla, catalin.marinas,
linux-kernel
Fixes cocci reported warning:Unneeded semicolon
Fixes: 86edf6bdcf05 ("smccc/kvm_guest: Enable errata based on implementation CPUs")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202504020941.VEeL6nVJ-lkp@intel.com/
Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
---
drivers/firmware/smccc/kvm_guest.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/firmware/smccc/kvm_guest.c b/drivers/firmware/smccc/kvm_guest.c
index 5767aed25cdc..ffe9f3c013df 100644
--- a/drivers/firmware/smccc/kvm_guest.c
+++ b/drivers/firmware/smccc/kvm_guest.c
@@ -103,7 +103,7 @@ void __init kvm_arm_target_impl_cpu_init(void)
target[i].midr = res.a1;
target[i].revidr = res.a2;
target[i].aidr = res.a3;
- };
+ }
if (!cpu_errata_set_target_impl(max_cpus, target)) {
pr_warn("Failed to set target implementation CPUs\n");
--
2.47.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] smccc/kvm_guest: Remove the accidental semicolon
2025-04-02 13:44 [PATCH] smccc/kvm_guest: Remove the accidental semicolon Shameer Kolothum
@ 2025-04-02 13:58 ` Sudeep Holla
2025-04-02 14:14 ` Shameerali Kolothum Thodi
2025-04-02 16:43 ` Oliver Upton
0 siblings, 2 replies; 5+ messages in thread
From: Sudeep Holla @ 2025-04-02 13:58 UTC (permalink / raw)
To: Shameer Kolothum
Cc: kvmarm, linux-arm-kernel, oliver.upton, maz, mark.rutland,
lpieralisi, catalin.marinas, linux-kernel
On Wed, Apr 02, 2025 at 02:44:01PM +0100, Shameer Kolothum wrote:
> Fixes cocci reported warning:Unneeded semicolon
>
There was similar patch on the list [1] few days ago.
> Fixes: 86edf6bdcf05 ("smccc/kvm_guest: Enable errata based on implementation CPUs")
^^^ Is this really necessary as they get backported as well ?
Since, KVM maintainers are in cc-ed, let me know if you guys want to pick
this ? Else I can send it as part of my firmware (ffa/scmi) fixes.
--
Regards,
Sudeep
[1] https://lore.kernel.org/all/20250326040659.1190696-1-nichen@iscas.ac.cn
^ permalink raw reply [flat|nested] 5+ messages in thread* RE: [PATCH] smccc/kvm_guest: Remove the accidental semicolon
2025-04-02 13:58 ` Sudeep Holla
@ 2025-04-02 14:14 ` Shameerali Kolothum Thodi
2025-04-02 16:43 ` Oliver Upton
1 sibling, 0 replies; 5+ messages in thread
From: Shameerali Kolothum Thodi @ 2025-04-02 14:14 UTC (permalink / raw)
To: Sudeep Holla
Cc: kvmarm@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
oliver.upton@linux.dev, maz@kernel.org, mark.rutland@arm.com,
lpieralisi@kernel.org, catalin.marinas@arm.com,
linux-kernel@vger.kernel.org, nichen@iscas.ac.cn
> -----Original Message-----
> From: Sudeep Holla <sudeep.holla@arm.com>
> Sent: Wednesday, April 2, 2025 2:58 PM
> To: Shameerali Kolothum Thodi <shameerali.kolothum.thodi@huawei.com>
> Cc: kvmarm@lists.linux.dev; linux-arm-kernel@lists.infradead.org;
> oliver.upton@linux.dev; maz@kernel.org; mark.rutland@arm.com;
> lpieralisi@kernel.org; catalin.marinas@arm.com; linux-
> kernel@vger.kernel.org
> Subject: Re: [PATCH] smccc/kvm_guest: Remove the accidental semicolon
>
> On Wed, Apr 02, 2025 at 02:44:01PM +0100, Shameer Kolothum wrote:
> > Fixes cocci reported warning:Unneeded semicolon
> >
>
> There was similar patch on the list [1] few days ago.
Ah.. I missed that. Please take that.
>
> > Fixes: 86edf6bdcf05 ("smccc/kvm_guest: Enable errata based on
> > implementation CPUs")
>
> ^^^ Is this really necessary as they get backported as well ?
Actually I was of two minds on this. Not sure.
>
> Since, KVM maintainers are in cc-ed, let me know if you guys want to pick
> this ? Else I can send it as part of my firmware (ffa/scmi) fixes.
Thanks,
Shameer
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] smccc/kvm_guest: Remove the accidental semicolon
2025-04-02 13:58 ` Sudeep Holla
2025-04-02 14:14 ` Shameerali Kolothum Thodi
@ 2025-04-02 16:43 ` Oliver Upton
2025-04-03 9:01 ` Sudeep Holla
1 sibling, 1 reply; 5+ messages in thread
From: Oliver Upton @ 2025-04-02 16:43 UTC (permalink / raw)
To: Sudeep Holla
Cc: Shameer Kolothum, kvmarm, linux-arm-kernel, maz, mark.rutland,
lpieralisi, catalin.marinas, linux-kernel
Hi Sudeep,
On Wed, Apr 02, 2025 at 02:58:06PM +0100, Sudeep Holla wrote:
> On Wed, Apr 02, 2025 at 02:44:01PM +0100, Shameer Kolothum wrote:
> > Fixes cocci reported warning:Unneeded semicolon
> >
>
> There was similar patch on the list [1] few days ago.
>
> > Fixes: 86edf6bdcf05 ("smccc/kvm_guest: Enable errata based on implementation CPUs")
>
> ^^^ Is this really necessary as they get backported as well ?
The blamed commit was introduced this release cycle so no concern about
backports.
> Since, KVM maintainers are in cc-ed, let me know if you guys want to pick
> this ? Else I can send it as part of my firmware (ffa/scmi) fixes.
I can grab the fix here in a moment, I've already got one queued up [*]
for the KVM guest driver anyway.
[*]: https://git.kernel.org/kvmarm/kvmarm/c/acfcaf90db1f
Thanks,
Oliver
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] smccc/kvm_guest: Remove the accidental semicolon
2025-04-02 16:43 ` Oliver Upton
@ 2025-04-03 9:01 ` Sudeep Holla
0 siblings, 0 replies; 5+ messages in thread
From: Sudeep Holla @ 2025-04-03 9:01 UTC (permalink / raw)
To: Oliver Upton
Cc: Shameer Kolothum, Sudeep Holla, kvmarm, linux-arm-kernel, maz,
mark.rutland, lpieralisi, catalin.marinas, linux-kernel
On Wed, Apr 02, 2025 at 09:43:40AM -0700, Oliver Upton wrote:
> Hi Sudeep,
>
> On Wed, Apr 02, 2025 at 02:58:06PM +0100, Sudeep Holla wrote:
> > On Wed, Apr 02, 2025 at 02:44:01PM +0100, Shameer Kolothum wrote:
> > > Fixes cocci reported warning:Unneeded semicolon
> > >
> >
> > There was similar patch on the list [1] few days ago.
> >
> > > Fixes: 86edf6bdcf05 ("smccc/kvm_guest: Enable errata based on implementation CPUs")
> >
> > ^^^ Is this really necessary as they get backported as well ?
>
> The blamed commit was introduced this release cycle so no concern about
> backports.
>
Ah OK, sorry didn't look at the details.
> > Since, KVM maintainers are in cc-ed, let me know if you guys want to pick
> > this ? Else I can send it as part of my firmware (ffa/scmi) fixes.
>
> I can grab the fix here in a moment, I've already got one queued up [*]
> for the KVM guest driver anyway.
>
Thanks!
--
Regards,
Sudeep
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-04-03 10:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-02 13:44 [PATCH] smccc/kvm_guest: Remove the accidental semicolon Shameer Kolothum
2025-04-02 13:58 ` Sudeep Holla
2025-04-02 14:14 ` Shameerali Kolothum Thodi
2025-04-02 16:43 ` Oliver Upton
2025-04-03 9:01 ` Sudeep Holla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).