summaryrefslogtreecommitdiff
path: root/Kernel/Graphics/Intel/NativeGraphicsAdapter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Graphics/Intel/NativeGraphicsAdapter.h')
-rw-r--r--Kernel/Graphics/Intel/NativeGraphicsAdapter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Graphics/Intel/NativeGraphicsAdapter.h b/Kernel/Graphics/Intel/NativeGraphicsAdapter.h
index b7c58dea8a..3cdb170bbc 100644
--- a/Kernel/Graphics/Intel/NativeGraphicsAdapter.h
+++ b/Kernel/Graphics/Intel/NativeGraphicsAdapter.h
@@ -20,7 +20,8 @@ class IntelNativeGraphicsAdapter final
, public PCI::Device {
public:
- static LockRefPtr<IntelNativeGraphicsAdapter> initialize(PCI::DeviceIdentifier const&);
+ static ErrorOr<bool> probe(PCI::DeviceIdentifier const&);
+ static ErrorOr<NonnullLockRefPtr<GenericGraphicsAdapter>> create(PCI::DeviceIdentifier const&);
virtual ~IntelNativeGraphicsAdapter() = default;