D | devicetree.h | 1407 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument 1408 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell) 1433 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument 1434 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value) 1443 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument 1459 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument 1460 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value) 1502 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument 1503 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell) 1526 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument [all …]
|