diff mbox series

[Xen-devel,02/11] xen/arm: domain: Re-order the includes alphabetically

Message ID 20170811180257.5493-3-julien.grall@arm.com
State Accepted
Commit 232dd35f700fc284eaa3ddb894e4e0489d788494
Headers show
Series xen/arm: Clean-up traps.c | expand

Commit Message

Julien Grall Aug. 11, 2017, 6:02 p.m. UTC
Signed-off-by: Julien Grall <julien.grall@arm.com>
---
 xen/arch/arm/domain.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

Comments

Stefano Stabellini Aug. 21, 2017, 9:16 p.m. UTC | #1
On Fri, 11 Aug 2017, Julien Grall wrote:
> Signed-off-by: Julien Grall <julien.grall@arm.com>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

and applied

> ---
>  xen/arch/arm/domain.c | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c
> index 2dc8b0ab5a..1d835d321d 100644
> --- a/xen/arch/arm/domain.c
> +++ b/xen/arch/arm/domain.c
> @@ -9,6 +9,9 @@
>   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>   * GNU General Public License for more details.
>   */
> +#include <xen/bitops.h>
> +#include <xen/errno.h>
> +#include <xen/grant_table.h>
>  #include <xen/hypercall.h>
>  #include <xen/init.h>
>  #include <xen/lib.h>
> @@ -16,24 +19,21 @@
>  #include <xen/sched.h>
>  #include <xen/softirq.h>
>  #include <xen/wait.h>
> -#include <xen/errno.h>
> -#include <xen/bitops.h>
> -#include <xen/grant_table.h>
>  
> +#include <asm/alternative.h>
> +#include <asm/cpufeature.h>
>  #include <asm/current.h>
>  #include <asm/event.h>
> +#include <asm/gic.h>
>  #include <asm/guest_access.h>
> -#include <asm/regs.h>
> -#include <asm/p2m.h>
>  #include <asm/irq.h>
> -#include <asm/cpufeature.h>
> -#include <asm/vfp.h>
> +#include <asm/p2m.h>
> +#include <asm/platform.h>
>  #include <asm/procinfo.h>
> -#include <asm/alternative.h>
> -
> -#include <asm/gic.h>
> +#include <asm/regs.h>
> +#include <asm/vfp.h>
>  #include <asm/vgic.h>
> -#include <asm/platform.h>
> +
>  #include "vtimer.h"
>  #include "vuart.h"
>  
> -- 
> 2.11.0
>
diff mbox series

Patch

diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c
index 2dc8b0ab5a..1d835d321d 100644
--- a/xen/arch/arm/domain.c
+++ b/xen/arch/arm/domain.c
@@ -9,6 +9,9 @@ 
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  */
+#include <xen/bitops.h>
+#include <xen/errno.h>
+#include <xen/grant_table.h>
 #include <xen/hypercall.h>
 #include <xen/init.h>
 #include <xen/lib.h>
@@ -16,24 +19,21 @@ 
 #include <xen/sched.h>
 #include <xen/softirq.h>
 #include <xen/wait.h>
-#include <xen/errno.h>
-#include <xen/bitops.h>
-#include <xen/grant_table.h>
 
+#include <asm/alternative.h>
+#include <asm/cpufeature.h>
 #include <asm/current.h>
 #include <asm/event.h>
+#include <asm/gic.h>
 #include <asm/guest_access.h>
-#include <asm/regs.h>
-#include <asm/p2m.h>
 #include <asm/irq.h>
-#include <asm/cpufeature.h>
-#include <asm/vfp.h>
+#include <asm/p2m.h>
+#include <asm/platform.h>
 #include <asm/procinfo.h>
-#include <asm/alternative.h>
-
-#include <asm/gic.h>
+#include <asm/regs.h>
+#include <asm/vfp.h>
 #include <asm/vgic.h>
-#include <asm/platform.h>
+
 #include "vtimer.h"
 #include "vuart.h"