]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
x86/boot: tidy #include-s
authorJan Beulich <jbeulich@suse.com>
Wed, 15 Nov 2023 10:42:28 +0000 (11:42 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 15 Nov 2023 10:42:28 +0000 (11:42 +0100)
As of d58a509e01c4 ("build,x86: remove the need for build32.mk") we
don't need to use non-standard #include forms anymore in the sources for
the boot code helper blobs. The only place where this kind of #include
needs to remain (for the time being) is mkelf32.c.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/boot/defs.h
xen/arch/x86/boot/reloc.c

index f9840044ec69636525e3a028058328d1dca2f324..239b9f87165a6e4db545d06f2406abffc1d7cdfd 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef __BOOT_DEFS_H__
 #define __BOOT_DEFS_H__
 
-#include "../../../include/xen/stdbool.h"
+#include <xen/stdbool.h>
 
 #define __maybe_unused __attribute__((__unused__))
 #define __packed       __attribute__((__packed__))
index 609b02cb73dc08a351fabe1d908f1dfbd82907f9..e093b7389c9e3b46ef6765fd48c7b6e79a7d25e2 100644 (file)
@@ -27,10 +27,11 @@ asm (
     );
 
 #include "defs.h"
-#include "../../../include/xen/multiboot.h"
-#include "../../../include/xen/multiboot2.h"
 
-#include "../../../include/xen/kconfig.h"
+#include <xen/kconfig.h>
+#include <xen/multiboot.h>
+#include <xen/multiboot2.h>
+
 #include <public/arch-x86/hvm/start_info.h>
 
 #ifdef CONFIG_VIDEO