From 57a2a1184755c1613edc37875d879debf043e318 Mon Sep 17 00:00:00 2001 From: Andrew Rybchenko Date: Fri, 13 May 2016 06:58:20 +0000 Subject: [PATCH] sfxge(4): move ef10_intr_* to ef10_intr.c Submitted by: Andy Moreton Sponsored by: Solarflare Communications, Inc. MFC after: 1 week --- sys/dev/sfxge/common/{hunt_intr.c => ef10_intr.c} | 4 ++-- sys/modules/sfxge/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename sys/dev/sfxge/common/{hunt_intr.c => ef10_intr.c} (97%) diff --git a/sys/dev/sfxge/common/hunt_intr.c b/sys/dev/sfxge/common/ef10_intr.c similarity index 97% rename from sys/dev/sfxge/common/hunt_intr.c rename to sys/dev/sfxge/common/ef10_intr.c index 7a4293c97c4e..5a91fe15bdae 100644 --- a/sys/dev/sfxge/common/hunt_intr.c +++ b/sys/dev/sfxge/common/ef10_intr.c @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include "efx_impl.h" -#if EFSYS_OPT_HUNTINGTON +#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD __checkReturn efx_rc_t ef10_intr_init( @@ -197,4 +197,4 @@ ef10_intr_fini( _NOTE(ARGUNUSED(enp)) } -#endif /* EFSYS_OPT_HUNTINGTON */ +#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */ diff --git a/sys/modules/sfxge/Makefile b/sys/modules/sfxge/Makefile index cf8ada363a27..0aa90014f004 100644 --- a/sys/modules/sfxge/Makefile +++ b/sys/modules/sfxge/Makefile @@ -29,10 +29,10 @@ SRCS+= siena_mac.c siena_mcdi.c siena_nic.c siena_nvram.c siena_phy.c SRCS+= siena_sram.c siena_vpd.c SRCS+= siena_flash.h siena_impl.h -SRCS+= ef10_ev.c ef10_filter.c +SRCS+= ef10_ev.c ef10_filter.c ef10_intr.c SRCS+= ef10_impl.h -SRCS+= hunt_intr.c hunt_mac.c hunt_mcdi.c hunt_nic.c +SRCS+= hunt_mac.c hunt_mcdi.c hunt_nic.c SRCS+= hunt_nvram.c hunt_rx.c hunt_phy.c hunt_tx.c hunt_vpd.c SRCS+= hunt_impl.h