diff mbox series

[09/11] hw/core: Reorder included headers in null-machine.c

Message ID 20240115094852.3597165-10-zhao1.liu@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series hw/core: Cleanup and reorder headers | expand

Commit Message

Zhao Liu Jan. 15, 2024, 9:48 a.m. UTC
From: Zhao Liu <zhao1.liu@intel.com>

Reorder the header files (except qemu/osdep.h) in alphabetical order.

Tested by "./configure" and then "make".

Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
 hw/core/null-machine.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/hw/core/null-machine.c b/hw/core/null-machine.c
index a0c7acc19cc3..3d411de3396a 100644
--- a/hw/core/null-machine.c
+++ b/hw/core/null-machine.c
@@ -13,9 +13,9 @@ 
 
 #include "qemu/osdep.h"
 
-#include "qemu/error-report.h"
-#include "hw/boards.h"
 #include "exec/address-spaces.h"
+#include "hw/boards.h"
+#include "qemu/error-report.h"
 
 static void machine_none_init(MachineState *mch)
 {