mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-18 17:35:05 +00:00
9 lines
325 B
C
9 lines
325 B
C
#pragma once
|
|
|
|
/**
|
|
* Creates required aliases for the devicetree generation.
|
|
* @param compatible_name the "compatible" value for the related driver
|
|
* @param config_type the internal configuration type for a device
|
|
*/
|
|
#define DEFINE_DEVICETREE(compatible_name, config_type) typedef config_type compatible_name##_config_dt;
|