Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jan 2010 18:00:24 +0000 (UTC)
From:      Jack F Vogel <jfv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r203083 - head/sys/dev/e1000
Message-ID:  <201001271800.o0RI0OZu087069@svn.freebsd.org>

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



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