net/mlx5e: Make choose LRO timeout function static
The function is used in en_main.c only, we can make it static and remove its declaration from en.h Signed-off-by: Gal Pressman <galp@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
acac5ec0c2
commit
707129dcea
|
@ -1062,7 +1062,6 @@ void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv);
|
||||||
int mlx5e_close(struct net_device *netdev);
|
int mlx5e_close(struct net_device *netdev);
|
||||||
int mlx5e_open(struct net_device *netdev);
|
int mlx5e_open(struct net_device *netdev);
|
||||||
void mlx5e_update_stats_work(struct work_struct *work);
|
void mlx5e_update_stats_work(struct work_struct *work);
|
||||||
u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout);
|
|
||||||
|
|
||||||
int mlx5e_bits_invert(unsigned long a, int size);
|
int mlx5e_bits_invert(unsigned long a, int size);
|
||||||
|
|
||||||
|
|
|
@ -3967,7 +3967,7 @@ void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params, u8 cq_period_mode)
|
||||||
MLX5_CQ_PERIOD_MODE_START_FROM_CQE);
|
MLX5_CQ_PERIOD_MODE_START_FROM_CQE);
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout)
|
static u32 mlx5e_choose_lro_timeout(struct mlx5_core_dev *mdev, u32 wanted_timeout)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue