netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix "VLAN filer" typos
@ 2022-05-28 12:31 Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 1/3] e1000: Fix typos in comments Jiaqing Zhao
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jiaqing Zhao @ 2022-05-28 12:31 UTC (permalink / raw)
  To: netdev, intel-wired-lan; +Cc: Jiaqing Zhao

My misspelled search keywords gave some results, guess we need to fix
them.

Jiaqing Zhao (3):
  e1000: Fix typos in comments
  ixgb: Fix typos in comments
  ixgbe: Fix typos in comments

 drivers/net/ethernet/intel/e1000/e1000_hw.c     | 4 ++--
 drivers/net/ethernet/intel/ixgb/ixgb_hw.c       | 4 ++--
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c  | 2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] e1000: Fix typos in comments
  2022-05-28 12:31 [PATCH 0/3] Fix "VLAN filer" typos Jiaqing Zhao
@ 2022-05-28 12:31 ` Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 2/3] ixgb: " Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 3/3] ixgbe: " Jiaqing Zhao
  2 siblings, 0 replies; 4+ messages in thread
From: Jiaqing Zhao @ 2022-05-28 12:31 UTC (permalink / raw)
  To: netdev, intel-wired-lan; +Cc: Jiaqing Zhao

"VLAN filter" was misspelled as "VLAN filer" in some comments.

Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
---
 drivers/net/ethernet/intel/e1000/e1000_hw.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/e1000/e1000_hw.c b/drivers/net/ethernet/intel/e1000/e1000_hw.c
index 1042e79a1397..f8860f24ede0 100644
--- a/drivers/net/ethernet/intel/e1000/e1000_hw.c
+++ b/drivers/net/ethernet/intel/e1000/e1000_hw.c
@@ -4376,7 +4376,7 @@ void e1000_rar_set(struct e1000_hw *hw, u8 *addr, u32 index)
 /**
  * e1000_write_vfta - Writes a value to the specified offset in the VLAN filter table.
  * @hw: Struct containing variables accessed by shared code
- * @offset: Offset in VLAN filer table to write
+ * @offset: Offset in VLAN filter table to write
  * @value: Value to write into VLAN filter table
  */
 void e1000_write_vfta(struct e1000_hw *hw, u32 offset, u32 value)
@@ -4396,7 +4396,7 @@ void e1000_write_vfta(struct e1000_hw *hw, u32 offset, u32 value)
 }
 
 /**
- * e1000_clear_vfta - Clears the VLAN filer table
+ * e1000_clear_vfta - Clears the VLAN filter table
  * @hw: Struct containing variables accessed by shared code
  */
 static void e1000_clear_vfta(struct e1000_hw *hw)
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] ixgb: Fix typos in comments
  2022-05-28 12:31 [PATCH 0/3] Fix "VLAN filer" typos Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 1/3] e1000: Fix typos in comments Jiaqing Zhao
@ 2022-05-28 12:31 ` Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 3/3] ixgbe: " Jiaqing Zhao
  2 siblings, 0 replies; 4+ messages in thread
From: Jiaqing Zhao @ 2022-05-28 12:31 UTC (permalink / raw)
  To: netdev, intel-wired-lan; +Cc: Jiaqing Zhao

"VLAN filter" was misspelled as "VLAN filer" in some comments.

Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
---
 drivers/net/ethernet/intel/ixgb/ixgb_hw.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/ixgb/ixgb_hw.c b/drivers/net/ethernet/intel/ixgb/ixgb_hw.c
index c8d1e815ec6b..98bd3267b99b 100644
--- a/drivers/net/ethernet/intel/ixgb/ixgb_hw.c
+++ b/drivers/net/ethernet/intel/ixgb/ixgb_hw.c
@@ -576,7 +576,7 @@ ixgb_rar_set(struct ixgb_hw *hw,
  * Writes a value to the specified offset in the VLAN filter table.
  *
  * hw - Struct containing variables accessed by shared code
- * offset - Offset in VLAN filer table to write
+ * offset - Offset in VLAN filter table to write
  * value - Value to write into VLAN filter table
  *****************************************************************************/
 void
@@ -588,7 +588,7 @@ ixgb_write_vfta(struct ixgb_hw *hw,
 }
 
 /******************************************************************************
- * Clears the VLAN filer table
+ * Clears the VLAN filter table
  *
  * hw - Struct containing variables accessed by shared code
  *****************************************************************************/
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] ixgbe: Fix typos in comments
  2022-05-28 12:31 [PATCH 0/3] Fix "VLAN filer" typos Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 1/3] e1000: Fix typos in comments Jiaqing Zhao
  2022-05-28 12:31 ` [PATCH 2/3] ixgb: " Jiaqing Zhao
@ 2022-05-28 12:31 ` Jiaqing Zhao
  2 siblings, 0 replies; 4+ messages in thread
From: Jiaqing Zhao @ 2022-05-28 12:31 UTC (permalink / raw)
  To: netdev, intel-wired-lan; +Cc: Jiaqing Zhao

"VLAN filter" was misspelled as "VLAN filer" in some comments.

Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
---
 drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c  | 2 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_common.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c
index 95c92fe890a1..100388968e4d 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c
@@ -879,7 +879,7 @@ static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
  *  ixgbe_clear_vfta_82598 - Clear VLAN filter table
  *  @hw: pointer to hardware structure
  *
- *  Clears the VLAN filer table, and the VMDq index associated with the filter
+ *  Clears the VLAN filter table, and the VMDq index associated with the filter
  **/
 static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
 {
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
index 4c26c4b92f07..38c4609bd429 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
@@ -3237,7 +3237,7 @@ s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
  *  ixgbe_clear_vfta_generic - Clear VLAN filter table
  *  @hw: pointer to hardware structure
  *
- *  Clears the VLAN filer table, and the VMDq index associated with the filter
+ *  Clears the VLAN filter table, and the VMDq index associated with the filter
  **/
 s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
 {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-05-28 12:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-28 12:31 [PATCH 0/3] Fix "VLAN filer" typos Jiaqing Zhao
2022-05-28 12:31 ` [PATCH 1/3] e1000: Fix typos in comments Jiaqing Zhao
2022-05-28 12:31 ` [PATCH 2/3] ixgb: " Jiaqing Zhao
2022-05-28 12:31 ` [PATCH 3/3] ixgbe: " Jiaqing Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).