Home
last modified time | relevance | path

Searched refs:control_name (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/subsys/usb/device_next/class/
Dusbd_uac2_macros.h178 #define CONTROL_TOKEN(entity, control_name) \ argument
179 COND_CODE_1(DT_NODE_HAS_PROP(entity, control_name), \
180 (DT_STRING_UPPER_TOKEN(entity, control_name)), \
183 #define CONTROL_BITS(entity, control_name, bitshift) \ argument
184 (UTIL_CAT(CONTROL_, CONTROL_TOKEN(entity, control_name)) << bitshift)
186 #define CONTROL_TOKEN_BY_IDX(entity, control_name, idx) \ argument
187 COND_CODE_1(DT_PROP_HAS_IDX(entity, control_name, idx), \
188 (DT_STRING_UPPER_TOKEN_BY_IDX(entity, control_name, idx)), \
191 #define CONTROL_BITS_BY_IDX(entity, control_name, idx, bitshift) \ argument
192 (UTIL_CAT(CONTROL_, CONTROL_TOKEN_BY_IDX(entity, control_name, idx)) \