mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
20 lines
379 B
C++
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
|
|
};
|
|
|
|
}
|