D | devicetree.h | 1554 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument 1555 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell) 1580 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument 1581 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value) 1590 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument 1606 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument 1607 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value) 1649 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument 1650 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell) 1673 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument [all …]
|