aboutsummaryrefslogtreecommitdiff
path: root/kapi
diff options
context:
space:
mode:
Diffstat (limited to 'kapi')
-rw-r--r--kapi/kapi/devices/error.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/kapi/kapi/devices/error.hpp b/kapi/kapi/devices/error.hpp
index b4812550..cf33daa9 100644
--- a/kapi/kapi/devices/error.hpp
+++ b/kapi/kapi/devices/error.hpp
@@ -14,6 +14,10 @@ namespace kapi::devices
{
//! The driver did not match on the given device.
no_match = 1,
+ //! The device has no signature.
+ no_device_signature = 2,
+ //! The device signature was invalid.
+ invalid_device_signature = 3,
};
[[nodiscard]] auto driver_match_category() noexcept -> kstd::error_category const &;