sfxge(4): move ef10_tx_* to ef10_tx.c

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
This commit is contained in:
Andrew Rybchenko 2016-05-13 07:08:33 +00:00
parent 204d1d179e
commit 69fb4e16ea
4 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$");
#include "efx_impl.h"
#if EFSYS_OPT_HUNTINGTON
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
#if EFSYS_OPT_QSTATS
#define EFX_TX_QSTAT_INCR(_etp, _stat) \
@ -569,7 +569,7 @@ ef10_tx_qdesc_dma_create(
}
void
hunt_tx_qdesc_tso_create(
ef10_tx_qdesc_tso_create(
__in efx_txq_t *etp,
__in uint16_t ipv4_id,
__in uint32_t tcp_seq,
@ -707,4 +707,4 @@ ef10_tx_qstats_update(
#endif /* EFSYS_OPT_QSTATS */
#endif /* EFSYS_OPT_HUNTINGTON */
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */

View File

@ -167,7 +167,7 @@ static const efx_tx_ops_t __efx_tx_hunt_ops = {
ef10_tx_qpio_post, /* etxo_qpio_post */
ef10_tx_qdesc_post, /* etxo_qdesc_post */
ef10_tx_qdesc_dma_create, /* etxo_qdesc_dma_create */
hunt_tx_qdesc_tso_create, /* etxo_qdesc_tso_create */
ef10_tx_qdesc_tso_create, /* etxo_qdesc_tso_create */
ef10_tx_qdesc_tso2_create, /* etxo_qdesc_tso2_create */
ef10_tx_qdesc_vlantci_create, /* etxo_qdesc_vlantci_create */
#if EFSYS_OPT_QSTATS

View File

@ -746,7 +746,7 @@ ef10_tx_qdesc_dma_create(
__out efx_desc_t *edp);
extern void
hunt_tx_qdesc_tso_create(
ef10_tx_qdesc_tso_create(
__in efx_txq_t *etp,
__in uint16_t ipv4_id,
__in uint32_t tcp_seq,

View File

@ -30,11 +30,11 @@ SRCS+= siena_sram.c siena_vpd.c
SRCS+= siena_flash.h siena_impl.h
SRCS+= ef10_ev.c ef10_filter.c ef10_intr.c ef10_mac.c ef10_mcdi.c ef10_nic.c
SRCS+= ef10_nvram.c ef10_phy.c ef10_rx.c
SRCS+= ef10_nvram.c ef10_phy.c ef10_rx.c ef10_tx.c
SRCS+= ef10_impl.h
SRCS+= hunt_nic.c
SRCS+= hunt_phy.c hunt_tx.c hunt_vpd.c
SRCS+= hunt_phy.c hunt_vpd.c
SRCS+= hunt_impl.h
SRCS+= medford_nic.c