1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

Kernel: Remove now-unused singleton methods from our network devices

This commit is contained in:
Conrad Pankoff 2019-08-28 21:53:52 +10:00 committed by Andreas Kling
parent 93c16590f1
commit 13abb3e88b
4 changed files with 0 additions and 22 deletions

View file

@ -1,7 +1,6 @@
#pragma once
#include <AK/OwnPtr.h>
#include <AK/RefPtr.h>
#include <Kernel/IRQHandler.h>
#include <Kernel/Net/NetworkAdapter.h>
#include <Kernel/PCI.h>
@ -11,8 +10,6 @@
class RTL8139NetworkAdapter final : public NetworkAdapter
, public IRQHandler {
public:
static RTL8139NetworkAdapter* the();
static OwnPtr<RTL8139NetworkAdapter> autodetect();
RTL8139NetworkAdapter(PCI::Address, u8 irq);