Searched refs:irq_prop (Results 1 – 1 of 1) sorted by relevance
/linux-6.12.1/scripts/dtc/ |
D | checks.c | 1692 struct property *irq_prop, *prop = NULL; in check_interrupts_property() local 1695 irq_prop = get_property(node, "interrupts"); in check_interrupts_property() 1696 if (!irq_prop) in check_interrupts_property() 1699 if (!is_multiple_of(irq_prop->val.len, sizeof(cell_t))) in check_interrupts_property() 1700 FAIL_PROP(c, dti, node, irq_prop, "size (%d) is invalid, expected multiple of %zu", in check_interrupts_property() 1701 irq_prop->val.len, sizeof(cell_t)); in check_interrupts_property() 1748 if (!is_multiple_of(irq_prop->val.len, irq_cells * sizeof(cell_t))) { in check_interrupts_property() 1751 irq_prop->val.len, (int)(irq_cells * sizeof(cell_t))); in check_interrupts_property()
|