Hi all, Today's linux-next merge of the tip tree got a conflict in kernel/irq/generic-chip.c between commit 1aa0dd94ca07 ("irqdomain: Eliminate revmap type") from Linus' tree and commit 002fca5df168 ("genirq: generic chip: Use DIV_ROUND_UP to calculate numchips") from the tip tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc kernel/irq/generic-chip.c index 10e663a,2f274f3..0000000 --- a/kernel/irq/generic-chip.c +++ b/kernel/irq/generic-chip.c @@@ -275,7 -275,10 +275,7 @@@ int irq_alloc_domain_generic_chips(stru if (d->gc) return -EBUSY; - numchips = d->revmap_size / irqs_per_chip; - if (d->revmap_type != IRQ_DOMAIN_MAP_LINEAR) - return -EINVAL; - - numchips = DIV_ROUND_UP(d->revmap_data.linear.size, irqs_per_chip); ++ numchips = DIV_ROUND_UP(d->revmap_size, irqs_per_chip); if (!numchips) return -EINVAL;