The patch titled Documentation/DMA-mapping.txt: update for pci_dma_mapping_error() changes has been added to the -mm tree. Its filename is documentation-dma-mappingtxt-update-for-pci_dma_mapping_error-changes.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 *** See http://userweb.kernel.org/~akpm/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: Documentation/DMA-mapping.txt: update for pci_dma_mapping_error() changes From: Marin Mitov <mitov@xxxxxxxxxxx> Make the example code consistent with changed API. Signed-off-by: Marin Mitov <mitov@xxxxxxxxxxx> Cc: FUJITA Tomonori <fujita.tomonori@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Documentation/DMA-mapping.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN Documentation/DMA-mapping.txt~documentation-dma-mappingtxt-update-for-pci_dma_mapping_error-changes Documentation/DMA-mapping.txt --- a/Documentation/DMA-mapping.txt~documentation-dma-mappingtxt-update-for-pci_dma_mapping_error-changes +++ a/Documentation/DMA-mapping.txt @@ -740,7 +740,7 @@ failure can be determined by: dma_addr_t dma_handle; dma_handle = pci_map_single(pdev, addr, size, direction); - if (pci_dma_mapping_error(dma_handle)) { + if (pci_dma_mapping_error(pdev, dma_handle)) { /* * reduce current DMA mapping usage, * delay and try again later or _ Patches currently in -mm which might be from mitov@xxxxxxxxxxx are documentation-dma-mappingtxt-update-for-pci_dma_mapping_error-changes.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