mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
sfxge(4): add Medford2 support to Rx module
Submitted by: Andy Moreton <amoreton at solarflare.com> Sponsored by: Solarflare Communications, Inc. Differential Revision: https://reviews.freebsd.org/D18151
This commit is contained in:
parent
10d4c14d98
commit
34352ef8c3
2 changed files with 10 additions and 4 deletions
|
|
@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "efx_impl.h"
|
||||
|
||||
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2
|
||||
|
||||
|
||||
static __checkReturn efx_rc_t
|
||||
|
|
@ -1114,4 +1114,4 @@ ef10_rx_fini(
|
|||
#endif /* EFSYS_OPT_RX_SCALE */
|
||||
}
|
||||
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2 */
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ static const efx_rx_ops_t __efx_rx_siena_ops = {
|
|||
};
|
||||
#endif /* EFSYS_OPT_SIENA */
|
||||
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
|
||||
#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2
|
||||
static const efx_rx_ops_t __efx_rx_ef10_ops = {
|
||||
ef10_rx_init, /* erxo_init */
|
||||
ef10_rx_fini, /* erxo_fini */
|
||||
|
|
@ -207,7 +207,7 @@ static const efx_rx_ops_t __efx_rx_ef10_ops = {
|
|||
ef10_rx_qcreate, /* erxo_qcreate */
|
||||
ef10_rx_qdestroy, /* erxo_qdestroy */
|
||||
};
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */
|
||||
#endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2 */
|
||||
|
||||
|
||||
__checkReturn efx_rc_t
|
||||
|
|
@ -249,6 +249,12 @@ efx_rx_init(
|
|||
break;
|
||||
#endif /* EFSYS_OPT_MEDFORD */
|
||||
|
||||
#if EFSYS_OPT_MEDFORD2
|
||||
case EFX_FAMILY_MEDFORD2:
|
||||
erxop = &__efx_rx_ef10_ops;
|
||||
break;
|
||||
#endif /* EFSYS_OPT_MEDFORD2 */
|
||||
|
||||
default:
|
||||
EFSYS_ASSERT(0);
|
||||
rc = ENOTSUP;
|
||||
|
|
|
|||
Loading…
Reference in a new issue