From owner-svn-src-head@FreeBSD.ORG Mon Nov 28 17:19:06 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F046106564A; Mon, 28 Nov 2011 17:19:06 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8CCF28FC12; Mon, 28 Nov 2011 17:19:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pASHJ6EH000846; Mon, 28 Nov 2011 17:19:06 GMT (envelope-from philip@svn.freebsd.org) Received: (from philip@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pASHJ6Hg000811; Mon, 28 Nov 2011 17:19:06 GMT (envelope-from philip@svn.freebsd.org) Message-Id: <201111281719.pASHJ6Hg000811@svn.freebsd.org> From: Philip Paeps Date: Mon, 28 Nov 2011 17:19:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r228078 - head/sys/dev/sfxge/common X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2011 17:19:06 -0000 Author: philip Date: Mon Nov 28 17:19:05 2011 New Revision: 228078 URL: http://svn.freebsd.org/changeset/base/228078 Log: sfxge: Add $FreeBSD$ tags to common code files. Requested by: bz Modified: head/sys/dev/sfxge/common/efsys.h head/sys/dev/sfxge/common/efx.h (contents, props changed) head/sys/dev/sfxge/common/efx_bootcfg.c (contents, props changed) head/sys/dev/sfxge/common/efx_ev.c (contents, props changed) head/sys/dev/sfxge/common/efx_filter.c (contents, props changed) head/sys/dev/sfxge/common/efx_impl.h (contents, props changed) head/sys/dev/sfxge/common/efx_intr.c (contents, props changed) head/sys/dev/sfxge/common/efx_mac.c (contents, props changed) head/sys/dev/sfxge/common/efx_mcdi.c (contents, props changed) head/sys/dev/sfxge/common/efx_mcdi.h (contents, props changed) head/sys/dev/sfxge/common/efx_mon.c (contents, props changed) head/sys/dev/sfxge/common/efx_nic.c (contents, props changed) head/sys/dev/sfxge/common/efx_nvram.c (contents, props changed) head/sys/dev/sfxge/common/efx_phy.c (contents, props changed) head/sys/dev/sfxge/common/efx_port.c (contents, props changed) head/sys/dev/sfxge/common/efx_regs.h (contents, props changed) head/sys/dev/sfxge/common/efx_regs_ef10.h (contents, props changed) head/sys/dev/sfxge/common/efx_regs_mcdi.h (contents, props changed) head/sys/dev/sfxge/common/efx_regs_pci.h (contents, props changed) head/sys/dev/sfxge/common/efx_rx.c (contents, props changed) head/sys/dev/sfxge/common/efx_sram.c (contents, props changed) head/sys/dev/sfxge/common/efx_tx.c (contents, props changed) head/sys/dev/sfxge/common/efx_types.h (contents, props changed) head/sys/dev/sfxge/common/efx_vpd.c (contents, props changed) head/sys/dev/sfxge/common/efx_wol.c (contents, props changed) head/sys/dev/sfxge/common/siena_flash.h (contents, props changed) head/sys/dev/sfxge/common/siena_impl.h (contents, props changed) head/sys/dev/sfxge/common/siena_mac.c (contents, props changed) head/sys/dev/sfxge/common/siena_mon.c (contents, props changed) head/sys/dev/sfxge/common/siena_nic.c (contents, props changed) head/sys/dev/sfxge/common/siena_nvram.c (contents, props changed) head/sys/dev/sfxge/common/siena_phy.c (contents, props changed) head/sys/dev/sfxge/common/siena_sram.c (contents, props changed) head/sys/dev/sfxge/common/siena_vpd.c (contents, props changed) Modified: head/sys/dev/sfxge/common/efsys.h ============================================================================== --- head/sys/dev/sfxge/common/efsys.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efsys.h Mon Nov 28 17:19:05 2011 (r228078) @@ -25,14 +25,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFSYS_H #define _SYS_EFSYS_H -#include -__FBSDID("$FreeBSD$"); - #ifdef __cplusplus extern "C" { #endif Modified: head/sys/dev/sfxge/common/efx.h ============================================================================== --- head/sys/dev/sfxge/common/efx.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_H Modified: head/sys/dev/sfxge/common/efx_bootcfg.c ============================================================================== --- head/sys/dev/sfxge/common/efx_bootcfg.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_bootcfg.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_ev.c ============================================================================== --- head/sys/dev/sfxge/common/efx_ev.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_ev.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_filter.c ============================================================================== --- head/sys/dev/sfxge/common/efx_filter.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_filter.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_impl.h ============================================================================== --- head/sys/dev/sfxge/common/efx_impl.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_impl.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_IMPL_H Modified: head/sys/dev/sfxge/common/efx_intr.c ============================================================================== --- head/sys/dev/sfxge/common/efx_intr.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_intr.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_mac.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mac.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_mac.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_mcdi.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mcdi.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_mcdi.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_mcdi.h ============================================================================== --- head/sys/dev/sfxge/common/efx_mcdi.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_mcdi.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_MCDI_H Modified: head/sys/dev/sfxge/common/efx_mon.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mon.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_mon.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_nic.c ============================================================================== --- head/sys/dev/sfxge/common/efx_nic.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_nic.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_nvram.c ============================================================================== --- head/sys/dev/sfxge/common/efx_nvram.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_nvram.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_phy.c ============================================================================== --- head/sys/dev/sfxge/common/efx_phy.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_phy.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_port.c ============================================================================== --- head/sys/dev/sfxge/common/efx_port.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_port.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_regs.h ============================================================================== --- head/sys/dev/sfxge/common/efx_regs.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_regs.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_REGS_H Modified: head/sys/dev/sfxge/common/efx_regs_ef10.h ============================================================================== --- head/sys/dev/sfxge/common/efx_regs_ef10.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_regs_ef10.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_EF10_REGS_H Modified: head/sys/dev/sfxge/common/efx_regs_mcdi.h ============================================================================== --- head/sys/dev/sfxge/common/efx_regs_mcdi.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_regs_mcdi.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,10 +21,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ -/*! \cidoxg_firmware_mc_cmd */ - #ifndef _SIENA_MC_DRIVER_PCOL_H #define _SIENA_MC_DRIVER_PCOL_H @@ -2783,4 +2783,3 @@ #define MC_CMD_TCM_TXQ_INIT_OUT_LEN 0 #endif /* _SIENA_MC_DRIVER_PCOL_H */ -/*! \cidoxg_end */ Modified: head/sys/dev/sfxge/common/efx_regs_pci.h ============================================================================== --- head/sys/dev/sfxge/common/efx_regs_pci.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_regs_pci.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_REGS_PCI_H Modified: head/sys/dev/sfxge/common/efx_rx.c ============================================================================== --- head/sys/dev/sfxge/common/efx_rx.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_rx.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_sram.c ============================================================================== --- head/sys/dev/sfxge/common/efx_sram.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_sram.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_tx.c ============================================================================== --- head/sys/dev/sfxge/common/efx_tx.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_tx.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_types.h ============================================================================== --- head/sys/dev/sfxge/common/efx_types.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_types.h Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,8 @@ * SUCH DAMAGE. * * Ackowledgement to Fen Systems Ltd. + * + * $FreeBSD$ */ #ifndef _SYS_EFX_TYPES_H Modified: head/sys/dev/sfxge/common/efx_vpd.c ============================================================================== --- head/sys/dev/sfxge/common/efx_vpd.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_vpd.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/efx_wol.c ============================================================================== --- head/sys/dev/sfxge/common/efx_wol.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/efx_wol.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/siena_flash.h ============================================================================== --- head/sys/dev/sfxge/common/siena_flash.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_flash.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,9 +21,10 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ - #ifndef _SYS_SIENA_FLASH_H #define _SYS_SIENA_FLASH_H Modified: head/sys/dev/sfxge/common/siena_impl.h ============================================================================== --- head/sys/dev/sfxge/common/siena_impl.h Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_impl.h Mon Nov 28 17:19:05 2011 (r228078) @@ -21,6 +21,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $FreeBSD$ */ #ifndef _SYS_SIENA_IMPL_H Modified: head/sys/dev/sfxge/common/siena_mac.c ============================================================================== --- head/sys/dev/sfxge/common/siena_mac.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_mac.c Mon Nov 28 17:19:05 2011 (r228078) @@ -22,6 +22,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_mon.c ============================================================================== --- head/sys/dev/sfxge/common/siena_mon.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_mon.c Mon Nov 28 17:19:05 2011 (r228078) @@ -22,6 +22,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_nic.c ============================================================================== --- head/sys/dev/sfxge/common/siena_nic.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_nic.c Mon Nov 28 17:19:05 2011 (r228078) @@ -22,6 +22,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_nvram.c ============================================================================== --- head/sys/dev/sfxge/common/siena_nvram.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_nvram.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h" Modified: head/sys/dev/sfxge/common/siena_phy.c ============================================================================== --- head/sys/dev/sfxge/common/siena_phy.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_phy.c Mon Nov 28 17:19:05 2011 (r228078) @@ -22,6 +22,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_sram.c ============================================================================== --- head/sys/dev/sfxge/common/siena_sram.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_sram.c Mon Nov 28 17:19:05 2011 (r228078) @@ -22,6 +22,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_vpd.c ============================================================================== --- head/sys/dev/sfxge/common/siena_vpd.c Mon Nov 28 16:25:27 2011 (r228077) +++ head/sys/dev/sfxge/common/siena_vpd.c Mon Nov 28 17:19:05 2011 (r228078) @@ -23,6 +23,9 @@ * SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + #include "efsys.h" #include "efx.h" #include "efx_types.h"