Patch f0fbe7bce733 ("gpio: Move irqdomain into struct gpio_irq_chip") breaks the build for gpio-reg.c: drivers/gpio/gpio-reg.c: In function 'gpio_reg_to_irq': drivers/gpio/gpio-reg.c:106:19: error: 'struct gpio_reg' has no member named 'irq' drivers/gpio/gpio-reg.c:107:27: error: 'struct gpio_reg' has no member named 'irq' It's obvious when you look at the patch, which only did this: - if (irq >= 0 && r->irqdomain) - irq = irq_find_mapping(r->irqdomain, irq); + if (irq >= 0 && r->irq.domain) + irq = irq_find_mapping(r->irq.domain, irq); and made no other changes to this file. Please revert the change to this file, or fix it. Thanks. -- RMK's Patch system: http://www.armlinux.org.uk/developer/patches/ FTTC broadband for 0.8mile line in suburbia: sync at 8.8Mbps down 630kbps up According to speedtest.net: 8.21Mbps down 510kbps up -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html