mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 21:07:34 +00:00
Kernel/Storage: Remove unused IDEController::initialize() method
This commit is contained in:
parent
93fceb1890
commit
dac7e911e6
2 changed files with 0 additions and 6 deletions
|
@ -15,11 +15,6 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
UNMAP_AFTER_INIT NonnullLockRefPtr<IDEController> IDEController::initialize()
|
||||
{
|
||||
return adopt_lock_ref(*new IDEController());
|
||||
}
|
||||
|
||||
ErrorOr<void> IDEController::reset()
|
||||
{
|
||||
return Error::from_errno(ENOTIMPL);
|
||||
|
|
|
@ -18,7 +18,6 @@ class AsyncBlockDeviceRequest;
|
|||
class IDEChannel;
|
||||
class IDEController : public ATAController {
|
||||
public:
|
||||
static NonnullLockRefPtr<IDEController> initialize();
|
||||
virtual ~IDEController() override;
|
||||
|
||||
virtual LockRefPtr<StorageDevice> device(u32 index) const override final;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue