xen/cpupool: sort included headers in cpupool.c
authorJuergen Gross <jgross@suse.com>
Wed, 2 Dec 2020 09:13:09 +0000 (10:13 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 2 Dec 2020 09:13:09 +0000 (10:13 +0100)
Common style is to include header files in alphabetical order. Sort the
#include statements in cpupool.c accordingly.

Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: Dario Faggioli <dfaggioli@suse.com>
xen/common/sched/cpupool.c

index 6429c8f7b5e5ed61f2eb8db5bccb78665a03d436..84f326ea633f96bf4c7da427b2bcac0d4176f743 100644 (file)
  * (C) 2009, Juergen Gross, Fujitsu Technology Solutions
  */
 
-#include <xen/lib.h>
-#include <xen/init.h>
+#include <xen/cpu.h>
 #include <xen/cpumask.h>
+#include <xen/init.h>
+#include <xen/keyhandler.h>
+#include <xen/lib.h>
 #include <xen/param.h>
 #include <xen/percpu.h>
 #include <xen/sched.h>
 #include <xen/warning.h>
-#include <xen/keyhandler.h>
-#include <xen/cpu.h>
 
 #include "private.h"