svn commit: r191612 - head/sys/dev/e1000

Kip Macy kmacy at FreeBSD.org
Mon Apr 27 23:43:29 UTC 2009


Author: kmacy
Date: Mon Apr 27 23:43:28 2009
New Revision: 191612
URL: http://svn.freebsd.org/changeset/base/191612

Log:
  fix typo in conditional

Modified:
  head/sys/dev/e1000/if_em.c

Modified: head/sys/dev/e1000/if_em.c
==============================================================================
--- head/sys/dev/e1000/if_em.c	Mon Apr 27 22:55:48 2009	(r191611)
+++ head/sys/dev/e1000/if_em.c	Mon Apr 27 23:43:28 2009	(r191612)
@@ -1088,7 +1088,7 @@ em_start_locked(struct ifnet *ifp)
 		if (em_xmit(adapter, &m_head)) {
 			if (m_head == NULL)
 				break;
-#ifndef IFNET_BUFRING
+#ifndef IFNET_BUF_RING
 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
 			IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
 #endif


More information about the svn-src-head mailing list