summaryrefslogtreecommitdiff
path: root/Kernel/Storage/ATA/ATAController.cpp
blob: 042bb16fde1fda7baaa7086ba1b158522f61b376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <Kernel/Storage/ATA/ATAController.h>
#include <Kernel/Storage/StorageManagement.h>

namespace Kernel {

ATAController::ATAController()
    : StorageController(StorageManagement::generate_relative_ata_controller_id({}))
{
}

}