svn commit: r185758 - head/sys/dev/fxp

Pyun YongHyeon yongari at FreeBSD.org
Sun Dec 7 19:48:03 PST 2008


Author: yongari
Date: Mon Dec  8 03:48:03 2008
New Revision: 185758
URL: http://svn.freebsd.org/changeset/base/185758

Log:
  mutex.h is needed here. It got it by namespace pollution.
  
  Pointed out by:	bde

Modified:
  head/sys/dev/fxp/if_fxp.c

Modified: head/sys/dev/fxp/if_fxp.c
==============================================================================
--- head/sys/dev/fxp/if_fxp.c	Mon Dec  8 03:00:45 2008	(r185757)
+++ head/sys/dev/fxp/if_fxp.c	Mon Dec  8 03:48:03 2008	(r185758)
@@ -44,7 +44,9 @@ __FBSDID("$FreeBSD$");
 #include <sys/endian.h>
 #include <sys/kernel.h>
 #include <sys/mbuf.h>
+#include <sys/lock.h>
 #include <sys/module.h>
+#include <sys/mutex.h>
 #include <sys/rman.h>
 #include <sys/socket.h>
 #include <sys/sockio.h>


More information about the svn-src-head mailing list