The patch titled Subject: mpsc: use dma_set_mask insted of dma_supported has been removed from the -mm tree. Its filename was mpsc-use-dma_set_mask-insted-of-dma_supported.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Christoph Hellwig <hch@xxxxxx> Subject: mpsc: use dma_set_mask insted of dma_supported This ensures the dma mask that is supported by the driver is recorded in the device structure. Signed-off-by: Christoph Hellwig <hch@xxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Jiri Slaby <jslaby@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/tty/serial/mpsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/tty/serial/mpsc.c~mpsc-use-dma_set_mask-insted-of-dma_supported drivers/tty/serial/mpsc.c --- a/drivers/tty/serial/mpsc.c~mpsc-use-dma_set_mask-insted-of-dma_supported +++ a/drivers/tty/serial/mpsc.c @@ -755,7 +755,7 @@ static int mpsc_alloc_ring_mem(struct mp pi->port.line); if (!pi->dma_region) { - if (!dma_supported(pi->port.dev, 0xffffffff)) { + if (!dma_set_mask(pi->port.dev, 0xffffffff)) { printk(KERN_ERR "MPSC: Inadequate DMA support\n"); rc = -ENXIO; } else if ((pi->dma_region = dma_alloc_noncoherent(pi->port.dev, _ Patches currently in -mm which might be from hch@xxxxxx are pcnet32-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch tw68-core-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch saa7164-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch saa7134-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch cx88-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch cx25821-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch cx23885-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch netup_unidvb-use-pci_set_dma_mask-insted-of-pci_dma_supported.patch nouveau-dont-call-pci_dma_supported.patch sfc-dont-call-dma_supported.patch kaweth-remove-ifdefed-out-call-to-dma_supported.patch usbnet-remove-ifdefed-out-call-to-dma_supported.patch pci-remove-pci_dma_supported.patch dma-remove-external-references-to-dma_supported.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