D | devicetree.h | 1564 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument 1565 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell) 1590 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument 1591 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value) 1600 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument 1616 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument 1617 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value) 1659 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument 1660 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell) 1683 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument [all …]
|