The patch titled Subject: C6X: fix build breakage has been removed from the -mm tree. Its filename was c6x-convert-to-dma_map_ops-fix.patch This patch was dropped because it was folded into c6x-convert-to-dma_map_ops.patch ------------------------------------------------------ From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Subject: C6X: fix build breakage There is a missing curly brace so this code doesn't build. Fixes: 84f2f1c6ad15 ('c6x: convert to dma_map_ops') Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Signed-off-by: Christoph Hellwig <hch@xxxxxx> Cc: Mark Salter <msalter@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/c6x/kernel/dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/c6x/kernel/dma.c~c6x-convert-to-dma_map_ops-fix arch/c6x/kernel/dma.c --- a/arch/c6x/kernel/dma.c~c6x-convert-to-dma_map_ops-fix +++ a/arch/c6x/kernel/dma.c @@ -58,7 +58,7 @@ static int c6x_dma_map_sg(struct device struct scatterlist *sg; int i; - for_each_sg(sglist, sg, nents, i) + for_each_sg(sglist, sg, nents, i) { sg->dma_address = sg_phys(sg); c6x_dma_sync(sg->dma_address, sg->length, dir); } _ Patches currently in -mm which might be from dan.carpenter@xxxxxxxxxx are c6x-convert-to-dma_map_ops.patch maintainers-fix-mic-maintainers-entry.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