Searched refs:irq_prop (Results 1 – 1 of 1) sorted by relevance
/scripts/dtc/ |
D | checks.c | 1586 struct property *irq_prop, *prop = NULL; in check_interrupts_property() local 1589 irq_prop = get_property(node, "interrupts"); in check_interrupts_property() 1590 if (!irq_prop) in check_interrupts_property() 1593 if (irq_prop->val.len % sizeof(cell_t)) in check_interrupts_property() 1594 FAIL_PROP(c, dti, node, irq_prop, "size (%d) is invalid, expected multiple of %zu", in check_interrupts_property() 1595 irq_prop->val.len, sizeof(cell_t)); in check_interrupts_property() 1642 if (irq_prop->val.len % (irq_cells * sizeof(cell_t))) { in check_interrupts_property() 1645 irq_prop->val.len, (int)(irq_cells * sizeof(cell_t))); in check_interrupts_property()
|