mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 07:48:12 +00:00
Kernel/Storage: Remove InterfaceType enum
This enum was created to help put distinction between the commandset and the interface type, as ATAPI devices are simply ATA devices utilizing the SCSI commandset. Because we don't support ATAPI, putting such type of distinction is pointless, so let's remove this for now.
This commit is contained in:
parent
c85f81bc9d
commit
c3eaa73113
8 changed files with 5 additions and 41 deletions
|
@ -33,7 +33,6 @@ public:
|
|||
private:
|
||||
NVMeNameSpace(LUNAddress, NonnullRefPtrVector<NVMeQueue> queues, size_t storage_size, size_t lba_size, size_t major_number, size_t minor_number, u16 nsid, NonnullOwnPtr<KString> early_device_name);
|
||||
|
||||
virtual InterfaceType interface_type() const override { return InterfaceType::NVMe; }
|
||||
u16 m_nsid;
|
||||
NonnullRefPtrVector<NVMeQueue> m_queues;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue