Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2009 23:43:28 +0000 (UTC)
From:      Kip Macy <kmacy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r191612 - head/sys/dev/e1000
Message-ID:  <200904272343.n3RNhSmI030685@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904272343.n3RNhSmI030685>