The patch titled SERIAL: allow shared 8250_pnp interrupts has been removed from the -mm tree. Its filename is serial-allow-shared-8250_pnp-interrupts.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: SERIAL: allow shared 8250_pnp interrupts From: Bjorn Helgaas <bjorn.helgaas@xxxxxx> PNP devices can use shared interrupts, so check to see whether we'll need SA_SHIRQ for request_irq(). The builtin PDH UART on the HP rx8640 is an example of an ACPI/PNP device that uses a shareable level-triggered, active-low interrupt. The interrupt can be shared in very large I/O configurations or by artificially lowering IA64_DEF_LAST_DEVICE_VECTOR. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Cc: Adam Belay <ambx1@xxxxxxxxxx> Cc: Matthieu Castet <castet.matthieu@xxxxxxx> Cc: Li Shaohua <shaohua.li@xxxxxxxxx> Cc: Len Brown <len.brown@xxxxxxxxx> Acked-by: Russell King <rmk@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/serial/8250_pnp.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/serial/8250_pnp.c~serial-allow-shared-8250_pnp-interrupts drivers/serial/8250_pnp.c --- a/drivers/serial/8250_pnp.c~serial-allow-shared-8250_pnp-interrupts +++ a/drivers/serial/8250_pnp.c @@ -431,6 +431,8 @@ serial_pnp_probe(struct pnp_dev *dev, co #endif port.flags |= UPF_SKIP_TEST | UPF_BOOT_AUTOCONF; + if (pnp_irq_flags(dev, 0) & IORESOURCE_IRQ_SHAREABLE) + port.flags |= UPF_SHARE_IRQ; port.uartclk = 1843200; port.dev = &dev->dev; _ Patches currently in -mm which might be from bjorn.helgaas@xxxxxx are origin.patch pnpacpi-reject-acpi_producer-resources.patch 2.6-sony_acpi4.patch git-klibc.patch e100-disable-interrupts-at-boot.patch make-valid_mmap_phys_addr_range-take-a-pfn.patch valid_mmap_phys_addr_range-cleanup.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html