aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/acpi/acpi.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-07 22:19:13 +0200
committerMarvin Borner2020-05-07 22:19:13 +0200
commit9b2e28ad7a752c0fe7b60e73ca43c827b45b3ee8 (patch)
tree5b1b48ccf8324cced9ae9c4139b493cd98789cc2 /src/kernel/acpi/acpi.c
parent43184e40b14a5e41383ffb053e7c69c93ff81036 (diff)
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/acpi/acpi.c')
-rw-r--r--src/kernel/acpi/acpi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/acpi/acpi.c b/src/kernel/acpi/acpi.c
index 2f1c29f..9feed08 100644
--- a/src/kernel/acpi/acpi.c
+++ b/src/kernel/acpi/acpi.c
@@ -1,16 +1,16 @@
// Important specification: https://uefi.org/sites/default/files/resources/ACPI_6_2.pdf
// HPET: https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf
-#include <stddef.h>
-#include <system.h>
-#include <multiboot.h>
+#include <acpi/acpi.h>
#include <io/io.h>
#include <lib/lib.h>
-#include <lib/stdlib.h>
#include <lib/stdio.h>
-#include <acpi/acpi.h>
-#include <memory/paging.h>
+#include <lib/stdlib.h>
#include <memory/alloc.h>
+#include <memory/paging.h>
+#include <multiboot.h>
+#include <stddef.h>
+#include <system.h>
struct rsdt *rsdt;
struct fadt *fadt;