Message ID | 98c4197ab3bcf82d0055836cf950f1268dbcc91c.1712042178.git.federico.serafini@bugseng.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | xen: address violations of MISRA C:2012 Rule 16.3 | expand |
On 02.04.2024 09:22, Federico Serafini wrote: > Add break statement to 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> Reviewed-by: Jan Beulich <jbeulich@suse.com>
diff --git a/xen/common/event_channel.c b/xen/common/event_channel.c index 20f586cf5e..aceee0695f 100644 --- a/xen/common/event_channel.c +++ b/xen/common/event_channel.c @@ -853,6 +853,7 @@ int evtchn_send(struct domain *ld, unsigned int lport) break; default: ret = -EINVAL; + break; } out:
Add break statement to 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/common/event_channel.c | 1 + 1 file changed, 1 insertion(+)