aboutsummaryrefslogtreecommitdiff
path: root/kernel/kapi/devices/driver.cpp
blob: 55b7507b1ede8140cf007afbee54d14cecd7f0b3 (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_facet(kapi::capabilities::facet_id) -> void *
  {
    return nullptr;
  }

}  // namespace kapi::devices