From owner-svn-src-all@freebsd.org Wed Jan 13 07:25:57 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C72BA804A8; Wed, 13 Jan 2016 07:25:57 +0000 (UTC) (envelope-from arybchik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CA411B39; Wed, 13 Jan 2016 07:25:57 +0000 (UTC) (envelope-from arybchik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0D7PuT6059436; Wed, 13 Jan 2016 07:25:56 GMT (envelope-from arybchik@FreeBSD.org) Received: (from arybchik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0D7PqR4059393; Wed, 13 Jan 2016 07:25:52 GMT (envelope-from arybchik@FreeBSD.org) Message-Id: <201601130725.u0D7PqR4059393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arybchik set sender to arybchik@FreeBSD.org using -f From: Andrew Rybchenko Date: Wed, 13 Jan 2016 07:25:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r293814 - head/sys/dev/sfxge/common X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2016 07:25:57 -0000 Author: arybchik Date: Wed Jan 13 07:25:51 2016 New Revision: 293814 URL: https://svnweb.freebsd.org/changeset/base/293814 Log: sfxge: cleanup: simplify EFX header includes Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 2 days Modified: head/sys/dev/sfxge/common/efx_bootcfg.c head/sys/dev/sfxge/common/efx_crc32.c head/sys/dev/sfxge/common/efx_ev.c head/sys/dev/sfxge/common/efx_filter.c head/sys/dev/sfxge/common/efx_hash.c head/sys/dev/sfxge/common/efx_intr.c head/sys/dev/sfxge/common/efx_mac.c head/sys/dev/sfxge/common/efx_mcdi.c head/sys/dev/sfxge/common/efx_mcdi.h head/sys/dev/sfxge/common/efx_mon.c head/sys/dev/sfxge/common/efx_nic.c head/sys/dev/sfxge/common/efx_nvram.c head/sys/dev/sfxge/common/efx_phy.c head/sys/dev/sfxge/common/efx_port.c head/sys/dev/sfxge/common/efx_rx.c head/sys/dev/sfxge/common/efx_sram.c head/sys/dev/sfxge/common/efx_tx.c head/sys/dev/sfxge/common/efx_vpd.c head/sys/dev/sfxge/common/efx_wol.c head/sys/dev/sfxge/common/hunt_ev.c head/sys/dev/sfxge/common/hunt_filter.c head/sys/dev/sfxge/common/hunt_intr.c head/sys/dev/sfxge/common/hunt_mac.c head/sys/dev/sfxge/common/hunt_mcdi.c head/sys/dev/sfxge/common/hunt_nic.c head/sys/dev/sfxge/common/hunt_nvram.c head/sys/dev/sfxge/common/hunt_phy.c head/sys/dev/sfxge/common/hunt_rx.c head/sys/dev/sfxge/common/hunt_sram.c head/sys/dev/sfxge/common/hunt_tx.c head/sys/dev/sfxge/common/hunt_vpd.c head/sys/dev/sfxge/common/mcdi_mon.c head/sys/dev/sfxge/common/medford_nic.c head/sys/dev/sfxge/common/siena_mac.c head/sys/dev/sfxge/common/siena_mcdi.c head/sys/dev/sfxge/common/siena_nic.c head/sys/dev/sfxge/common/siena_nvram.c head/sys/dev/sfxge/common/siena_phy.c head/sys/dev/sfxge/common/siena_sram.c head/sys/dev/sfxge/common/siena_vpd.c Modified: head/sys/dev/sfxge/common/efx_bootcfg.c ============================================================================== --- head/sys/dev/sfxge/common/efx_bootcfg.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_bootcfg.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,9 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" #if EFSYS_OPT_BOOTCFG Modified: head/sys/dev/sfxge/common/efx_crc32.c ============================================================================== --- head/sys/dev/sfxge/common/efx_crc32.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_crc32.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,9 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" /* Modified: head/sys/dev/sfxge/common/efx_ev.c ============================================================================== --- head/sys/dev/sfxge/common/efx_ev.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_ev.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,12 +31,11 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" +#if EFSYS_OPT_MON_MCDI #include "mcdi_mon.h" +#endif #if EFSYS_OPT_QSTATS #define EFX_EV_QSTAT_INCR(_eep, _stat) \ Modified: head/sys/dev/sfxge/common/efx_filter.c ============================================================================== --- head/sys/dev/sfxge/common/efx_filter.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_filter.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/efx_hash.c ============================================================================== --- head/sys/dev/sfxge/common/efx_hash.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_hash.c Wed Jan 13 07:25:51 2016 (r293814) @@ -42,9 +42,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" /* Hash initial value */ Modified: head/sys/dev/sfxge/common/efx_intr.c ============================================================================== --- head/sys/dev/sfxge/common/efx_intr.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_intr.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/efx_mac.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mac.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_mac.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,9 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" #if EFSYS_OPT_MAC_FALCON_GMAC Modified: head/sys/dev/sfxge/common/efx_mcdi.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mcdi.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_mcdi.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,11 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" -#include "efx_regs_mcdi.h" #include "efx_impl.h" #if EFSYS_OPT_MCDI Modified: head/sys/dev/sfxge/common/efx_mcdi.h ============================================================================== --- head/sys/dev/sfxge/common/efx_mcdi.h Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_mcdi.h Wed Jan 13 07:25:51 2016 (r293814) @@ -34,7 +34,6 @@ #define _SYS_EFX_MCDI_H #include "efx.h" -#include "efx_regs.h" #include "efx_regs_mcdi.h" #ifdef __cplusplus Modified: head/sys/dev/sfxge/common/efx_mon.c ============================================================================== --- head/sys/dev/sfxge/common/efx_mon.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_mon.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_MON_NULL Modified: head/sys/dev/sfxge/common/efx_nic.c ============================================================================== --- head/sys/dev/sfxge/common/efx_nic.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_nic.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" __checkReturn efx_rc_t Modified: head/sys/dev/sfxge/common/efx_nvram.c ============================================================================== --- head/sys/dev/sfxge/common/efx_nvram.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_nvram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_NVRAM Modified: head/sys/dev/sfxge/common/efx_phy.c ============================================================================== --- head/sys/dev/sfxge/common/efx_phy.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_phy.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_FALCON #include "falcon_nvram.h" Modified: head/sys/dev/sfxge/common/efx_port.c ============================================================================== --- head/sys/dev/sfxge/common/efx_port.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_port.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,9 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" __checkReturn efx_rc_t Modified: head/sys/dev/sfxge/common/efx_rx.c ============================================================================== --- head/sys/dev/sfxge/common/efx_rx.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_rx.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/efx_sram.c ============================================================================== --- head/sys/dev/sfxge/common/efx_sram.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_sram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" __checkReturn efx_rc_t Modified: head/sys/dev/sfxge/common/efx_tx.c ============================================================================== --- head/sys/dev/sfxge/common/efx_tx.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_tx.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_QSTATS Modified: head/sys/dev/sfxge/common/efx_vpd.c ============================================================================== --- head/sys/dev/sfxge/common/efx_vpd.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_vpd.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_VPD Modified: head/sys/dev/sfxge/common/efx_wol.c ============================================================================== --- head/sys/dev/sfxge/common/efx_wol.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/efx_wol.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,9 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" #include "efx_impl.h" #if EFSYS_OPT_WOL Modified: head/sys/dev/sfxge/common/hunt_ev.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_ev.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_ev.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_MON_STATS #include "mcdi_mon.h" Modified: head/sys/dev/sfxge/common/hunt_filter.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_filter.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_filter.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs_mcdi.h" #include "efx_impl.h" #if EFSYS_OPT_HUNTINGTON Modified: head/sys/dev/sfxge/common/hunt_intr.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_intr.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_intr.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_mac.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_mac.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_mac.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_mcdi.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_mcdi.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_mcdi.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_nic.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_nic.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_nic.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,11 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" +#if EFSYS_OPT_MON_MCDI #include "mcdi_mon.h" +#endif #if EFSYS_OPT_HUNTINGTON Modified: head/sys/dev/sfxge/common/hunt_nvram.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_nvram.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_nvram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_HUNTINGTON Modified: head/sys/dev/sfxge/common/hunt_phy.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_phy.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_phy.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_rx.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_rx.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_rx.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_sram.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_sram.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_sram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_tx.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_tx.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_tx.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/hunt_vpd.c ============================================================================== --- head/sys/dev/sfxge/common/hunt_vpd.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/hunt_vpd.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/mcdi_mon.c ============================================================================== --- head/sys/dev/sfxge/common/mcdi_mon.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/mcdi_mon.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/medford_nic.c ============================================================================== --- head/sys/dev/sfxge/common/medford_nic.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/medford_nic.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" #include "mcdi_mon.h" Modified: head/sys/dev/sfxge/common/siena_mac.c ============================================================================== --- head/sys/dev/sfxge/common/siena_mac.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_mac.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" Modified: head/sys/dev/sfxge/common/siena_mcdi.c ============================================================================== --- head/sys/dev/sfxge/common/siena_mcdi.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_mcdi.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #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 Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_nic.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" #include "efx_impl.h" #include "mcdi_mon.h" Modified: head/sys/dev/sfxge/common/siena_nvram.c ============================================================================== --- head/sys/dev/sfxge/common/siena_nvram.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_nvram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_SIENA Modified: head/sys/dev/sfxge/common/siena_phy.c ============================================================================== --- head/sys/dev/sfxge/common/siena_phy.c Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_phy.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #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 Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_sram.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,7 +31,6 @@ #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 Wed Jan 13 07:11:43 2016 (r293813) +++ head/sys/dev/sfxge/common/siena_vpd.c Wed Jan 13 07:25:51 2016 (r293814) @@ -31,10 +31,7 @@ #include __FBSDID("$FreeBSD$"); -#include "efsys.h" #include "efx.h" -#include "efx_types.h" -#include "efx_regs.h" #include "efx_impl.h" #if EFSYS_OPT_VPD