aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/pci/pci.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/pci/pci.c
parent43184e40b14a5e41383ffb053e7c69c93ff81036 (diff)
Added and applied include-sorting
Worked better than I thought!
Diffstat (limited to 'src/kernel/pci/pci.c')
-rw-r--r--src/kernel/pci/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/pci/pci.c b/src/kernel/pci/pci.c
index 14881b1..6eca302 100644
--- a/src/kernel/pci/pci.c
+++ b/src/kernel/pci/pci.c
@@ -1,8 +1,8 @@
-#include <stdint.h>
-#include <system.h>
-#include <pci/pci.h>
#include <io/io.h>
#include <lib/lib.h>
+#include <pci/pci.h>
+#include <stdint.h>
+#include <system.h>
void pci_write_field(u32 device, int field, u32 value)
{