Re: [XEN PATCH 04/12] x86/hypercall: address violations of MISRA C Rule 16.3

2024-09-10 Thread Jan Beulich
On 10.09.2024 12:08, Federico Serafini wrote: > Address violations of MISRA C:2012 Rule 16.3: > "An unconditional `break' statement shall terminate every > switch-clause". > > No functional change. > > Signed-off-by: Federico Serafini Acked-by: Jan Beulich

[XEN PATCH 04/12] x86/hypercall: address violations of MISRA C Rule 16.3

2024-09-10 Thread Federico Serafini
Address violations of MISRA C:2012 Rule 16.3: "An unconditional `break' statement shall terminate every switch-clause". No functional change. Signed-off-by: Federico Serafini --- xen/arch/x86/include/asm/hypercall.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arc