2026-01-30 23:53:11 +01:00

20 lines
379 B
C++

// SPDX-License-Identifier: Apache-2.0
#include <tactility/driver.h>
#include <tactility/drivers/root.h>
extern "C" {
Driver root_driver = {
.name = "root",
.compatible = (const char*[]) { "root", nullptr },
.startDevice = nullptr,
.stopDevice = nullptr,
.api = nullptr,
.deviceType = nullptr,
.owner = nullptr,
.driver_private = nullptr
};
}