D | devicetree.h | 1359 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument 1360 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell) 1385 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument 1386 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value) 1395 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument 1411 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument 1412 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value) 1454 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument 1455 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell) 1478 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument [all …]
|