Device migrations, driver migrations and more (#575)

This commit is contained in:
Ken Van Hoeylandt
2026-07-20 23:43:17 +02:00
committed by GitHub
parent 2d768ef3a1
commit 2fbc44466a
221 changed files with 8824 additions and 3652 deletions
+3 -10
View File
@@ -1,18 +1,11 @@
// SPDX-License-Identifier: Apache-2.0
#include <tactility/crypt.h>
#include <tactility/hash.h>
#include <tactility/error.h>
#include <tactility/module.h>
extern "C" {
static error_t start() {
return ERROR_NONE;
}
static error_t stop() {
return ERROR_NONE;
}
static const ModuleSymbol crypt_module_symbols[] = {
DEFINE_MODULE_SYMBOL(crypt_get_iv),
DEFINE_MODULE_SYMBOL(crypt_generate_iv),
@@ -25,8 +18,8 @@ static const ModuleSymbol crypt_module_symbols[] = {
Module crypt_module = {
.name = "crypt",
.start = start,
.stop = stop,
.start = [] -> error_t { return ERROR_NONE; },
.stop = [] -> error_t { return ERROR_NONE; },
.symbols = crypt_module_symbols,
.internal = nullptr
};