blob: 684c3f45222e0d43f90a9d30e8e85c23fa5eca7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
#ifndef STORAGEKIT_STORAGEKIT_H
#define STORAGEKIT_STORAGEKIT_H
#define kDriveSectorSizeHDD (512U)
#define kDriveSectorSizeSSD (512U)
#define kDriveSectorSizeOptical (2048U)
namespace Kernel {
template <typename T>
class IDevice;
class NVMEDeviceInterface;
class AHCIDeviceInterface;
class ATADeviceInterface;
class SCSIDeviceInterface;
} // namespace Kernel
#endif
|