The patch titled Subject: C6X: fix build breakage has been added to the -mm tree. Its filename is c6x-convert-to-dma_map_ops-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/c6x-convert-to-dma_map_ops-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/c6x-convert-to-dma_map_ops-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ 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> 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 mm-add-tracepoint-for-scanning-pages-fix.patch c6x-convert-to-dma_map_ops-fix.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