svn commit: r239020 - head/sys/x86/x86

John Baldwin jhb at FreeBSD.org
Fri Aug 3 18:40:45 UTC 2012


Author: jhb
Date: Fri Aug  3 18:40:44 2012
New Revision: 239020
URL: http://svn.freebsd.org/changeset/base/239020

Log:
  Correct function name in comment.
  
  Submitted by:	alc

Modified:
  head/sys/x86/x86/busdma_machdep.c

Modified: head/sys/x86/x86/busdma_machdep.c
==============================================================================
--- head/sys/x86/x86/busdma_machdep.c	Fri Aug  3 17:04:41 2012	(r239019)
+++ head/sys/x86/x86/busdma_machdep.c	Fri Aug  3 18:40:44 2012	(r239020)
@@ -567,7 +567,7 @@ bus_dmamem_free(bus_dma_tag_t dmat, void
 	/*
 	 * 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");


More information about the svn-src-all mailing list