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

Jack F Vogel jfv at FreeBSD.org
Sat Apr 10 07:26:52 UTC 2010


Author: jfv
Date: Sat Apr 10 07:26:51 2010
New Revision: 206447
URL: http://svn.freebsd.org/changeset/base/206447

Log:
  Correct broken build.

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

Modified: head/sys/dev/e1000/if_em.c
==============================================================================
--- head/sys/dev/e1000/if_em.c	Sat Apr 10 07:07:08 2010	(r206446)
+++ head/sys/dev/e1000/if_em.c	Sat Apr 10 07:26:51 2010	(r206447)
@@ -4389,7 +4389,7 @@ em_enable_intr(struct adapter *adapter)
 	struct e1000_hw *hw = &adapter->hw;
 	u32 ims_mask = IMS_ENABLE_MASK;
 
-	if (hw->mac.type == e1000_82574)
+	if (hw->mac.type == e1000_82574) {
 		E1000_WRITE_REG(hw, EM_EIAC, EM_MSIX_MASK);
 		ims_mask |= EM_MSIX_MASK;
 	} 


More information about the svn-src-all mailing list