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; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"