[XEN PATCH 01/12] x86/psr: address violation of MISRA C Rule 16.3

Federico Serafini posted 12 patches 1 year, 4 months ago
There is a newer version of this series
[XEN PATCH 01/12] x86/psr: address violation of MISRA C Rule 16.3
Posted by Federico Serafini 1 year, 4 months ago
Address a violation of MISRA C:2012 Rule 16.3:
"An unconditional `break' statement shall terminate every
switch-clause".

No functional change.

Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>
---
 xen/arch/x86/psr.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xen/arch/x86/psr.c b/xen/arch/x86/psr.c
index 0b9631ac44..5815a35335 100644
--- a/xen/arch/x86/psr.c
+++ b/xen/arch/x86/psr.c
@@ -276,6 +276,7 @@ static enum psr_feat_type psr_type_to_feat_type(enum psr_type type)
 
     default:
         ASSERT_UNREACHABLE();
+        break;
     }
 
     return feat_type;
-- 
2.34.1
Re: [XEN PATCH 01/12] x86/psr: address violation of MISRA C Rule 16.3
Posted by Jan Beulich 1 year, 4 months ago
On 10.09.2024 12:08, Federico Serafini wrote:
> Address a violation of MISRA C:2012 Rule 16.3:
> "An unconditional `break' statement shall terminate every
> switch-clause".
> 
> No functional change.
> 
> Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>

Acked-by: Jan Beulich <jbeulich@suse.com>