net/mlx5: Fix inner TTC table creation
Fix typo of the cited commit that calls to mlx5_create_ttc_table, instead
of mlx5_create_inner_ttc_table.
Fixes: f4b45940e9 ("net/mlx5: Embed mlx5_ttc_table")
Signed-off-by: Maor Gottlieb <maorg@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
parent
39c538d644
commit
90b85d4e31
1 changed files with 2 additions and 1 deletions
|
|
@ -1255,7 +1255,8 @@ static int mlx5e_create_inner_ttc_table(struct mlx5e_priv *priv)
|
|||
return 0;
|
||||
|
||||
mlx5e_set_inner_ttc_params(priv, &ttc_params);
|
||||
priv->fs.inner_ttc = mlx5_create_ttc_table(priv->mdev, &ttc_params);
|
||||
priv->fs.inner_ttc = mlx5_create_inner_ttc_table(priv->mdev,
|
||||
&ttc_params);
|
||||
if (IS_ERR(priv->fs.inner_ttc))
|
||||
return PTR_ERR(priv->fs.inner_ttc);
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue