svn commit: r248804 - head/sys/kern

Jim Harris jimharris at FreeBSD.org
Wed Mar 27 23:07:44 UTC 2013


Author: jimharris
Date: Wed Mar 27 23:07:43 2013
New Revision: 248804
URL: http://svnweb.freebsd.org/changeset/base/248804

Log:
  deferal -> deferral

Modified:
  head/sys/kern/subr_bus_dma.c

Modified: head/sys/kern/subr_bus_dma.c
==============================================================================
--- head/sys/kern/subr_bus_dma.c	Wed Mar 27 21:31:40 2013	(r248803)
+++ head/sys/kern/subr_bus_dma.c	Wed Mar 27 23:07:43 2013	(r248804)
@@ -295,7 +295,7 @@ bus_dmamap_load(bus_dma_tag_t dmat, bus_
 
 	/*
 	 * Return ENOMEM to the caller so that it can pass it up the stack.
-	 * This error only happens when NOWAIT is set, so deferal is disabled.
+	 * This error only happens when NOWAIT is set, so deferral is disabled.
 	 */
 	if (error == ENOMEM)
 		return (error);
@@ -396,7 +396,7 @@ bus_dmamap_load_ccb(bus_dma_tag_t dmat, 
 		(*callback)(callback_arg, segs, nsegs, error);
 	/*
 	 * Return ENOMEM to the caller so that it can pass it up the stack.
-	 * This error only happens when NOWAIT is set, so deferal is disabled.
+	 * This error only happens when NOWAIT is set, so deferral is disabled.
 	 */
 	if (error == ENOMEM)
 		return (error);
@@ -468,7 +468,7 @@ bus_dmamap_load_mem(bus_dma_tag_t dmat, 
 
 	/*
 	 * Return ENOMEM to the caller so that it can pass it up the stack.
-	 * This error only happens when NOWAIT is set, so deferal is disabled.
+	 * This error only happens when NOWAIT is set, so deferral is disabled.
 	 */
 	if (error == ENOMEM)
 		return (error);


More information about the svn-src-all mailing list