aboutsummaryrefslogtreecommitdiff
path: root/stand/efi
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2022-12-04 00:23:22 +0000
committerWarner Losh <imp@FreeBSD.org>2022-12-04 00:23:22 +0000
commit3f2c1eb5b84317bae98420c1346304b604436727 (patch)
tree37413ea47fa098ad284971e7ad161c44c4a6604a /stand/efi
parent3df86732afed7cea51934d613f8aa43b87787cc1 (diff)
downloadsrc-3f2c1eb5b84317bae98420c1346304b604436727.tar.gz
src-3f2c1eb5b84317bae98420c1346304b604436727.zip
stand/efi: Better include order for sharing
Have a better include order so this can more easily be shared between EFI and kboot. Fewer ifdefs and the same (enough) include order as before. Sponsored by: Netflix
Diffstat (limited to 'stand/efi')
-rw-r--r--stand/efi/loader/bootinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/efi/loader/bootinfo.c b/stand/efi/loader/bootinfo.c
index 6e109fdba98f..4d4e50718f3a 100644
--- a/stand/efi/loader/bootinfo.c
+++ b/stand/efi/loader/bootinfo.c
@@ -45,12 +45,12 @@ __FBSDID("$FreeBSD$");
#include "bootstrap.h"
#include "modinfo.h"
-#include "loader_efi.h"
#if defined(__amd64__)
#include <machine/specialreg.h>
#endif
+#include "loader_efi.h"
#include "gfx_fb.h"
#if defined(LOADER_FDT_SUPPORT)