Message ID | 20221031080104.773325-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | net/mlx5: Fix spelling mistake "destoy" -> "destroy" | expand |
On Mon, Oct 31, 2022 at 08:01:04AM +0000, Colin Ian King wrote: > There is a spelling mistake in an error message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Thanks, Reviewed-by: Leon Romanovsky <leonro@nvidia.com> BTW, ➜ kernel git:(net-next) git grep "destoy" drivers/cpufreq/pasemi-cpufreq.c: * module init and destoy drivers/cpufreq/ppc_cbe_cpufreq.c: * module init and destoy drivers/hid/hid-logitech-hidpp.c: /* autocenter spring destoyed */ drivers/hwtracing/coresight/coresight-tmc-etr.c: * events are simply not used an freed as events are destoyed. We still drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c: mlx5dr_err(tbl->dmn, "Failed to destoy sw owned table\n"); include/net/caif/cfpkt.h: * pkt Packet to be destoyed. net/netfilter/nf_nat_core.c: * Else, when the conntrack is destoyed, nf_nat_cleanup_conntrack()
On 31 Oct 08:01, Colin Ian King wrote: >There is a spelling mistake in an error message. Fix it. > applied to net-next-mlx5. Thanks
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c index eb81759244d5..9c3dfd68f8df 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c @@ -292,7 +292,7 @@ int mlx5dr_table_destroy(struct mlx5dr_table *tbl) mlx5dr_dbg_tbl_del(tbl); ret = dr_table_destroy_sw_owned_tbl(tbl); if (ret) - mlx5dr_err(tbl->dmn, "Failed to destoy sw owned table\n"); + mlx5dr_err(tbl->dmn, "Failed to destroy sw owned table\n"); dr_table_uninit(tbl);
There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)