diff options
author | Andrew Rybchenko <arybchik@FreeBSD.org> | 2016-12-28 13:28:44 +0000 |
---|---|---|
committer | Andrew Rybchenko <arybchik@FreeBSD.org> | 2016-12-28 13:28:44 +0000 |
commit | c75d6362052729bd4373a4ceee3cbfedfdff9e91 (patch) | |
tree | 4ea29ceacddb2f3af5995b1d8a599a422800935a /sys/dev/sfxge/common/efx_phy.c | |
parent | e9d2c2010821ddd976a0a213068151ae7b57a7d9 (diff) |
sfxge(4): rename hunt_bist_* methods to ef10_bist_*
Submitted by: Mark Spender <mspender at solarflare.com>
Sponsored by: Solarflare Communications, Inc.
MFC after: 2 days
Notes
Notes:
svn path=/head/; revision=310699
Diffstat (limited to 'sys/dev/sfxge/common/efx_phy.c')
-rw-r--r-- | sys/dev/sfxge/common/efx_phy.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/sfxge/common/efx_phy.c b/sys/dev/sfxge/common/efx_phy.c index 7e0e5d93dc28..1db2300141c0 100644 --- a/sys/dev/sfxge/common/efx_phy.c +++ b/sys/dev/sfxge/common/efx_phy.c @@ -65,11 +65,10 @@ static const efx_phy_ops_t __efx_phy_ef10_ops = { ef10_phy_stats_update, /* epo_stats_update */ #endif /* EFSYS_OPT_PHY_STATS */ #if EFSYS_OPT_BIST - /* FIXME: Are these BIST methods appropriate for Medford? */ - hunt_bist_enable_offline, /* epo_bist_enable_offline */ - hunt_bist_start, /* epo_bist_start */ - hunt_bist_poll, /* epo_bist_poll */ - hunt_bist_stop, /* epo_bist_stop */ + ef10_bist_enable_offline, /* epo_bist_enable_offline */ + ef10_bist_start, /* epo_bist_start */ + ef10_bist_poll, /* epo_bist_poll */ + ef10_bist_stop, /* epo_bist_stop */ #endif /* EFSYS_OPT_BIST */ }; #endif /* EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD */ |