Kernel: Remove type from StorageDevice class

This commit is contained in:
Jean-Baptiste Boric 2021-04-11 18:53:01 +02:00 committed by Andreas Kling
commit a73bd0fff8
Notes: sideshowbarker 2024-07-18 20:25:08 +09:00
14 changed files with 1 additions and 47 deletions

View file

@ -41,9 +41,6 @@ public:
RamdiskDevice(const RamdiskController&, NonnullOwnPtr<Region>&&, int major, int minor);
virtual ~RamdiskDevice() override;
// ^StorageDevice
virtual Type type() const override { return StorageDevice::Type::Ramdisk; }
// ^BlockDevice
virtual void start_request(AsyncBlockDeviceRequest&) override;