[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20221108110502.114328-1-colin.i.king@gmail.com>
Date: Tue, 8 Nov 2022 11:05:02 +0000
From: Colin Ian King <colin.i.king@...il.com>
To: "David S . Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>, netdev@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH][next] hinic: Fix spelling mistake "fliter" -> "filter"
There is a function name and a dev_err message containing a
spelling mistake. Fix them.
Signed-off-by: Colin Ian King <colin.i.king@...il.com>
---
drivers/net/ethernet/huawei/hinic/hinic_main.c | 2 +-
drivers/net/ethernet/huawei/hinic/hinic_port.c | 4 ++--
drivers/net/ethernet/huawei/hinic/hinic_port.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/huawei/hinic/hinic_main.c b/drivers/net/ethernet/huawei/hinic/hinic_main.c
index 977c41473ab7..db82fe4736a6 100644
--- a/drivers/net/ethernet/huawei/hinic/hinic_main.c
+++ b/drivers/net/ethernet/huawei/hinic/hinic_main.c
@@ -1093,7 +1093,7 @@ static int set_features(struct hinic_dev *nic_dev,
}
if (changed & NETIF_F_HW_VLAN_CTAG_FILTER) {
- ret = hinic_set_vlan_fliter(nic_dev,
+ ret = hinic_set_vlan_filter(nic_dev,
!!(features &
NETIF_F_HW_VLAN_CTAG_FILTER));
if (ret) {
diff --git a/drivers/net/ethernet/huawei/hinic/hinic_port.c b/drivers/net/ethernet/huawei/hinic/hinic_port.c
index 9406237c461e..0ab72069e377 100644
--- a/drivers/net/ethernet/huawei/hinic/hinic_port.c
+++ b/drivers/net/ethernet/huawei/hinic/hinic_port.c
@@ -447,7 +447,7 @@ int hinic_set_rx_vlan_offload(struct hinic_dev *nic_dev, u8 en)
return 0;
}
-int hinic_set_vlan_fliter(struct hinic_dev *nic_dev, u32 en)
+int hinic_set_vlan_filter(struct hinic_dev *nic_dev, u32 en)
{
struct hinic_hwdev *hwdev = nic_dev->hwdev;
struct hinic_hwif *hwif = hwdev->hwif;
@@ -472,7 +472,7 @@ int hinic_set_vlan_fliter(struct hinic_dev *nic_dev, u32 en)
err = HINIC_MGMT_CMD_UNSUPPORTED;
} else if (err || !out_size || vlan_filter.status) {
dev_err(&pdev->dev,
- "Failed to set vlan fliter, err: %d, status: 0x%x, out size: 0x%x\n",
+ "Failed to set vlan filter, err: %d, status: 0x%x, out size: 0x%x\n",
err, vlan_filter.status, out_size);
err = -EINVAL;
}
diff --git a/drivers/net/ethernet/huawei/hinic/hinic_port.h b/drivers/net/ethernet/huawei/hinic/hinic_port.h
index c8694ac7c702..1b2e45c704d5 100644
--- a/drivers/net/ethernet/huawei/hinic/hinic_port.h
+++ b/drivers/net/ethernet/huawei/hinic/hinic_port.h
@@ -841,7 +841,7 @@ int hinic_get_vport_stats(struct hinic_dev *nic_dev,
int hinic_set_rx_vlan_offload(struct hinic_dev *nic_dev, u8 en);
-int hinic_set_vlan_fliter(struct hinic_dev *nic_dev, u32 en);
+int hinic_set_vlan_filter(struct hinic_dev *nic_dev, u32 en);
int hinic_get_mgmt_version(struct hinic_dev *nic_dev, u8 *mgmt_ver);
--
2.38.1
Powered by blists - more mailing lists