The patch titled Fix a warning in ioatdma has been removed from the -mm tree. Its filename is fix-a-warning-in-ioatdma.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix a warning in ioatdma From: "Benoit Boissinot" <bboissin@xxxxxxxxx> drivers/dma/ioatdma.c: In function 'ioat_init_module': drivers/dma/ioatdma.c:830: warning: control reaches end of non-void function Signed-off-by: Benoit Boissinot <benoit.boissinot@xxxxxxxxxxxx> Cc: "Chris Leech" <christopher.leech@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/dma/ioatdma.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/dma/ioatdma.c~fix-a-warning-in-ioatdma drivers/dma/ioatdma.c --- a/drivers/dma/ioatdma.c~fix-a-warning-in-ioatdma +++ a/drivers/dma/ioatdma.c @@ -826,7 +826,7 @@ static int __init ioat_init_module(void) /* if forced, worst case is that rmmod hangs */ __unsafe(THIS_MODULE); - pci_module_init(&ioat_pci_drv); + return pci_module_init(&ioat_pci_drv); } module_init(ioat_init_module); _ Patches currently in -mm which might be from bboissin@xxxxxxxxx are - 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