diff mbox series

[next] net/mlx5: fix spelling mistake "offlaods" -> "offloads"

Message ID 20190904193841.20138-1-colin.king@canonical.com
State Awaiting Upstream
Delegated to: David Miller
Headers show
Series [next] net/mlx5: fix spelling mistake "offlaods" -> "offloads" | expand

Commit Message

Colin Ian King Sept. 4, 2019, 7:38 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a NL_SET_ERR_MSG_MOD error message.
Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/net/ethernet/mellanox/mlx5/core/devlink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Saeed Mahameed Sept. 4, 2019, 11:31 p.m. UTC | #1
On Wed, 2019-09-04 at 20:38 +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a NL_SET_ERR_MSG_MOD error message.
> Fix it.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> 

Applied to net-next-mlx5.

Thanks,
Saeed.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/devlink.c b/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
index 7bf7b6fbc776..381925c90d94 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
@@ -133,7 +133,7 @@  static int mlx5_devlink_fs_mode_validate(struct devlink *devlink, u32 id,
 
 		else if (eswitch_mode == MLX5_ESWITCH_OFFLOADS) {
 			NL_SET_ERR_MSG_MOD(extack,
-					   "Software managed steering is not supported when eswitch offlaods enabled.");
+					   "Software managed steering is not supported when eswitch offloads enabled.");
 			err = -EOPNOTSUPP;
 		}
 	} else {