Re: [XEN PATCH 4/7] xen/sched: address MISRA C:2012 Rule 2.1

2023-12-11 Thread Stefano Stabellini
On Mon, 11 Dec 2023, Nicola Vetrini wrote: > The break statement after the return statement is definitely unreachable > and can be removed with no functional change. > > Signed-off-by: Nicola Vetrini Reviewed-by: Stefano Stabellini

Re: [XEN PATCH 4/7] xen/sched: address MISRA C:2012 Rule 2.1

2023-12-11 Thread George Dunlap
On Mon, Dec 11, 2023 at 10:30 AM Nicola Vetrini wrote: > > The break statement after the return statement is definitely unreachable > and can be removed with no functional change. > > Signed-off-by: Nicola Vetrini Acked-by: George Dunlap

[XEN PATCH 4/7] xen/sched: address MISRA C:2012 Rule 2.1

2023-12-11 Thread Nicola Vetrini
The break statement after the return statement is definitely unreachable and can be removed with no functional change. Signed-off-by: Nicola Vetrini --- xen/common/sched/core.c | 1 - 1 file changed, 1 deletion(-) diff --git a/xen/common/sched/core.c b/xen/common/sched/core.c index f6ac1e5af8bd