svn commit: r199662 - head/sys/dev/bge

Pyun YongHyeon yongari at FreeBSD.org
Sun Nov 22 18:34:16 UTC 2009


Author: yongari
Date: Sun Nov 22 18:34:15 2009
New Revision: 199662
URL: http://svn.freebsd.org/changeset/base/199662

Log:
  Fix typo introduced in r199011.
  
  Pointed out by:	marius

Modified:
  head/sys/dev/bge/if_bge.c

Modified: head/sys/dev/bge/if_bge.c
==============================================================================
--- head/sys/dev/bge/if_bge.c	Sun Nov 22 18:30:19 2009	(r199661)
+++ head/sys/dev/bge/if_bge.c	Sun Nov 22 18:34:15 2009	(r199662)
@@ -2261,7 +2261,7 @@ bge_dma_alloc(device_t dev)
 		    0, &sc->bge_cdata.bge_rx_jumbo_sparemap);
 		if (error) {
 			device_printf(sc->bge_dev,
-			    "can't create sapre DMA map for jumbo RX\n");
+			    "can't create spare DMA map for jumbo RX\n");
 			return (ENOMEM);
 		}
 		for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {


More information about the svn-src-head mailing list