Searched refs:irq_prop (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/scripts/dtc/ |
D | checks.c | 1347 struct property *irq_prop, *prop = NULL; in check_interrupts_property() local 1350 irq_prop = get_property(node, "interrupts"); in check_interrupts_property() 1351 if (!irq_prop) in check_interrupts_property() 1354 if (irq_prop->val.len % sizeof(cell_t)) in check_interrupts_property() 1355 FAIL_PROP(c, dti, node, irq_prop, "size (%d) is invalid, expected multiple of %zu", in check_interrupts_property() 1356 irq_prop->val.len, sizeof(cell_t)); in check_interrupts_property() 1399 if (irq_prop->val.len % (irq_cells * sizeof(cell_t))) { in check_interrupts_property() 1402 irq_prop->val.len, (int)(irq_cells * sizeof(cell_t))); in check_interrupts_property()
|