mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 11:06:10 +00:00
Kernel/Storage: Remove unused IDEController::initialize() method
This commit is contained in:
parent
93fceb1890
commit
dac7e911e6
Notes:
sideshowbarker
2024-07-16 21:24:42 +09:00
Author: https://github.com/supercomputer7
Commit: dac7e911e6
Pull-request: https://github.com/SerenityOS/serenity/pull/18276
Reviewed-by: https://github.com/Panky-codes
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