diff options
Diffstat (limited to 'Kernel/Net/NE2000NetworkAdapter.h')
-rw-r--r-- | Kernel/Net/NE2000NetworkAdapter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Net/NE2000NetworkAdapter.h b/Kernel/Net/NE2000NetworkAdapter.h index 955e29b738..1918010ae6 100644 --- a/Kernel/Net/NE2000NetworkAdapter.h +++ b/Kernel/Net/NE2000NetworkAdapter.h @@ -8,7 +8,7 @@ #include <AK/OwnPtr.h> #include <Kernel/Bus/PCI/Access.h> -#include <Kernel/Bus/PCI/DeviceController.h> +#include <Kernel/Bus/PCI/Device.h> #include <Kernel/IO.h> #include <Kernel/Interrupts/IRQHandler.h> #include <Kernel/Net/NetworkAdapter.h> @@ -17,7 +17,7 @@ namespace Kernel { class NE2000NetworkAdapter final : public NetworkAdapter - , public PCI::DeviceController + , public PCI::Device , public IRQHandler { public: static RefPtr<NE2000NetworkAdapter> try_to_initialize(PCI::Address); |