[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] xen/sched: address violations of MISRA C:2012 Directive 4.10
commit 1f2f5087c0bbc8c6219e5ce33e5bf17575f1cc00 Author: Simone Ballarin <simone.ballarin@xxxxxxxxxxx> AuthorDate: Mon Aug 28 15:20:08 2023 +0200 Commit: Stefano Stabellini <stefano.stabellini@xxxxxxx> CommitDate: Wed Aug 30 18:58:58 2023 -0700 xen/sched: address violations of MISRA C:2012 Directive 4.10 Add inclusion guards to address violations of MISRA C:2012 Directive 4.10 ("Precautions shall be taken in order to prevent the contents of a header file being included more than once"). Mechanical change. Signed-off-by: Simone Ballarin <simone.ballarin@xxxxxxxxxxx> Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxx> --- xen/common/sched/compat.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xen/common/sched/compat.c b/xen/common/sched/compat.c index a596e3a226..d718e450d4 100644 --- a/xen/common/sched/compat.c +++ b/xen/common/sched/compat.c @@ -3,6 +3,10 @@ * */ +#ifndef __COMMON_SCHED_COMPAT_C__ +#define __COMMON_SCHED_COMPAT_C__ + + #include <compat/sched.h> #define COMPAT @@ -44,6 +48,8 @@ int compat_set_timer_op(uint32_t lo, int32_t hi) return do_set_timer_op(((s64)hi << 32) | lo); } +#endif /* __COMMON_SCHED_COMPAT_C__ */ + /* * Local variables: * mode: C -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |