Ken Van Hoeylandt 74bcd979c5 Fixes
2026-07-23 00:42:49 +02:00

20 lines
325 B
C++

// SPDX-License-Identifier: Apache-2.0
#include <tactility/driver.h>
#include <tactility/module.h>
extern "C" {
extern Driver tca8418_driver;
static Driver* const tca8418_drivers[] = {
&tca8418_driver,
nullptr
};
Module tca8418_module = {
.name = "tca8418",
.drivers = tca8418_drivers
};
} // extern "C"