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

Jack F Vogel jfv at FreeBSD.org
Wed Jan 27 18:00:24 UTC 2010


Author: jfv
Date: Wed Jan 27 18:00:24 2010
New Revision: 203083
URL: http://svn.freebsd.org/changeset/base/203083

Log:
  Two more build problems, missing includes and semicolon.

Modified:
  head/sys/dev/e1000/e1000_osdep.h
  head/sys/dev/e1000/if_em.h

Modified: head/sys/dev/e1000/e1000_osdep.h
==============================================================================
--- head/sys/dev/e1000/e1000_osdep.h	Wed Jan 27 17:49:27 2010	(r203082)
+++ head/sys/dev/e1000/e1000_osdep.h	Wed Jan 27 18:00:24 2010	(r203083)
@@ -39,6 +39,8 @@
 #include <sys/types.h>
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
 #include <sys/mbuf.h>
 #include <sys/protosw.h>
 #include <sys/socket.h>

Modified: head/sys/dev/e1000/if_em.h
==============================================================================
--- head/sys/dev/e1000/if_em.h	Wed Jan 27 17:49:27 2010	(r203082)
+++ head/sys/dev/e1000/if_em.h	Wed Jan 27 18:00:24 2010	(r203083)
@@ -309,7 +309,7 @@ struct adapter {
 	struct ifmedia	media;
 	struct callout	timer;
 	struct callout	tx_fifo_timer;
-	bool		watchdog_check
+	bool		watchdog_check;
 	int		watchdog_time;
 	int		msi;
 	int		if_flags;


More information about the svn-src-all mailing list