Message ID | 1500296815-10243-6-git-send-email-bhupinder.thakur@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Bhupinder, On 17/07/17 14:06, Bhupinder Thakur wrote: > Rearrange xen header includes in alphabetical order in domctl.c. > > Signed-off-by: Bhupinder Thakur <bhupinder.thakur@linaro.org> > Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> For the future, please mention if you keep a reviewed-by tag when you modify a patch. This will give a chance to the reviewer to agree/disagree on the change. Reviewed-by: Julien Grall <julien.grall@arm.com> Cheers,
diff --git a/xen/arch/arm/domctl.c b/xen/arch/arm/domctl.c index 971caec..db6838d 100644 --- a/xen/arch/arm/domctl.c +++ b/xen/arch/arm/domctl.c @@ -4,12 +4,12 @@ * Copyright (c) 2012, Citrix Systems */ -#include <xen/types.h> -#include <xen/lib.h> #include <xen/errno.h> -#include <xen/sched.h> #include <xen/hypercall.h> #include <xen/iocap.h> +#include <xen/lib.h> +#include <xen/sched.h> +#include <xen/types.h> #include <xsm/xsm.h> #include <public/domctl.h>