aboutsummaryrefslogtreecommitdiff
path: root/kernel/kapi/devices/driver.cpp
blob: c6b5e056c9d32f6124d7a233e32f2c15b1db19a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <kapi/devices.hpp>

#include <cstdint>
#include <optional>

namespace kapi::devices
{

  auto driver::claimed_major() const -> std::optional<std::uint8_t>
  {
    return std::nullopt;
  }

  auto driver::query_interface(interface) -> void *
  {
    return nullptr;
  }

}  // namespace kapi::devices