Date: Mon, 8 Dec 2008 03:48:03 +0000 (UTC) From: Pyun YongHyeon <yongari@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185758 - head/sys/dev/fxp Message-ID: <200812080348.mB83m3Oi045959@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812080348.mB83m3Oi045959>