diff options
author | Marvin Borner | 2021-05-20 20:41:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:41:24 +0200 |
commit | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch) | |
tree | 952331f841b4d02d0b7189da716648df5cdb4d8e /kernel/drivers/rtl8139.c | |
parent | b22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff) |
Major restructuring
Diffstat (limited to 'kernel/drivers/rtl8139.c')
-rw-r--r-- | kernel/drivers/rtl8139.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/drivers/rtl8139.c b/kernel/drivers/rtl8139.c index 753bd6a..fdbc0c8 100644 --- a/kernel/drivers/rtl8139.c +++ b/kernel/drivers/rtl8139.c @@ -2,14 +2,14 @@ // Uses parts of the ToAruOS Project, released under the terms of the NCSA // Copyright (C) 2011-2018 K. Lange -#include <cpu.h> +#include <drivers/cpu.h> #include <def.h> -#include <interrupts.h> +#include <drivers/interrupts.h> #include <mem.h> #include <net.h> -#include <pci.h> +#include <drivers/pci.h> #include <print.h> -#include <rtl8139.h> +#include <drivers/rtl8139.h> static int rtl_irq = 0; static u8 mac[6] = { 0 }; |