mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
20 lines
382 B
C++
20 lines
382 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 },
|
|
.start_device = nullptr,
|
|
.stop_device = nullptr,
|
|
.api = nullptr,
|
|
.device_type = nullptr,
|
|
.owner = nullptr,
|
|
.driver_private = nullptr
|
|
};
|
|
|
|
}
|