From 28a38a123e9fcade06554ebf05856bbd6b22ccd5 Mon Sep 17 00:00:00 2001 From: jhb Date: Fri, 3 Aug 2012 18:40:44 +0000 Subject: [PATCH] Correct function name in comment. Submitted by: alc --- sys/x86/x86/busdma_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/x86/x86/busdma_machdep.c b/sys/x86/x86/busdma_machdep.c index 8735b1527c1..00f2e0b5910 100644 --- a/sys/x86/x86/busdma_machdep.c +++ b/sys/x86/x86/busdma_machdep.c @@ -567,7 +567,7 @@ bus_dmamem_free(bus_dma_tag_t dmat, void *vaddr, bus_dmamap_t map) /* * dmamem does not need to be bounced, so the map should be * NULL if malloc() was used and contig_dmamap if - * contigmalloc() was used. + * kmem_alloc_contig() was used. */ if (!(map == NULL || map == &contig_dmamap)) panic("bus_dmamem_free: Invalid map freed\n"); -- 2.45.2