aboutsummaryrefslogtreecommitdiff
path: root/sys/x86
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2012-08-03 18:40:44 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2012-08-03 18:40:44 +0000
commit0046805a58601fb3ae383a64a868af7358f8c9a6 (patch)
tree6ecb13422e12587a634c09ea43a22a726f82f7a6 /sys/x86
parentd958a71be26d86b6cb010c2ddeeba63439019967 (diff)
downloadsrc-0046805a58601fb3ae383a64a868af7358f8c9a6.tar.gz
src-0046805a58601fb3ae383a64a868af7358f8c9a6.zip
Correct function name in comment.
Submitted by: alc
Notes
Notes: svn path=/head/; revision=239020
Diffstat (limited to 'sys/x86')
-rw-r--r--sys/x86/x86/busdma_machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/busdma_machdep.c b/sys/x86/x86/busdma_machdep.c
index 8735b1527c16..00f2e0b59102 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");