All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iwl-next v2 0/4] intel: fix typos in comments
@ 2026-09-07  9:54 Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 1/4] i40e: " Hemanth Selam
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:54 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt.  Comments only, no code
changes.

v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
maintainer-netdev.rst asks, v2 designates the patches to a tree, and
each subject now names the component it touches instead of "net:".  The
series is rebased onto that tree; the diff is unchanged.

v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/


Hemanth Selam (4):
  i40e: fix typos in comments
  ice: fix typos in comments
  ixgbevf: fix typo "enble" in comment
  Documentation/eth/intel: fix repeated words in comments

 Documentation/networking/device_drivers/ethernet/intel/i40e.rst | 2 +-
 Documentation/networking/device_drivers/ethernet/intel/iavf.rst | 2 +-
 drivers/net/ethernet/intel/i40e/i40e_common.c                   | 2 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c                  | 2 +-
 drivers/net/ethernet/intel/ice/ice.h                            | 2 +-
 drivers/net/ethernet/intel/ice/ice_main.c                       | 2 +-
 drivers/net/ethernet/intel/ice/ice_sriov.c                      | 2 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c               | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)


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

* [PATCH iwl-next v2 1/4] i40e: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
@ 2026-09-07  9:54 ` Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 2/4] ice: " Hemanth Selam
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:54 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Fix typos in comments, found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---

Notes:
    v2: designate the patch to iwl-next and use a subject prefix naming the
    component, as maintainer-netdev.rst asks; v1 went out with a bare
    [PATCH] and a "net:" prefix. Rebased onto iwl-next, diff unchanged.
    
    v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/

 drivers/net/ethernet/intel/i40e/i40e_common.c  | 2 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/i40e/i40e_common.c b/drivers/net/ethernet/intel/i40e/i40e_common.c
index 8dadfef2c09f..026b35e5a000 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_common.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_common.c
@@ -676,7 +676,7 @@ int i40e_pf_reset(struct i40e_hw *hw)
 	grst_del = FIELD_GET(I40E_GLGEN_RSTCTL_GRSTDEL_MASK,
 			     rd32(hw, I40E_GLGEN_RSTCTL));
 
-	/* It can take upto 15 secs for GRST steady state.
+	/* It can take up to 15 secs for GRST steady state.
 	 * Bump it to 16 secs max to be safe.
 	 */
 	grst_del = grst_del * 20;
diff --git a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c
index 3da9ec49cc74..ef9d1e78c16a 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c
@@ -2614,7 +2614,7 @@ static u64 i40e_eeprom_test(struct net_device *netdev, u64 *data)
 	netif_info(pf, hw, netdev, "eeprom test\n");
 	*data = i40e_diag_eeprom_test(&pf->hw);
 
-	/* forcebly clear the NVM Update state machine */
+	/* forcibly clear the NVM Update state machine */
 	pf->hw.nvmupd_state = I40E_NVMUPD_STATE_INIT;
 
 	return *data;

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

* [PATCH iwl-next v2 2/4] ice: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 1/4] i40e: " Hemanth Selam
@ 2026-09-07  9:54 ` Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 3/4] ixgbevf: fix typo "enble" in comment Hemanth Selam
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:54 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Fix typos in comments, found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---

Notes:
    v2: designate the patch to iwl-next and use a subject prefix naming the
    component, as maintainer-netdev.rst asks; v1 went out with a bare
    [PATCH] and a "net:" prefix. Rebased onto iwl-next, diff unchanged.
    
    v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/

 drivers/net/ethernet/intel/ice/ice.h       | 2 +-
 drivers/net/ethernet/intel/ice/ice_main.c  | 2 +-
 drivers/net/ethernet/intel/ice/ice_sriov.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/intel/ice/ice.h b/drivers/net/ethernet/intel/ice/ice.h
index db3c7015c56c..e5f940d324dc 100644
--- a/drivers/net/ethernet/intel/ice/ice.h
+++ b/drivers/net/ethernet/intel/ice/ice.h
@@ -1105,7 +1105,7 @@ extern const struct xdp_metadata_ops ice_xdp_md_ops;
  * ice_is_dual - Check if given config is multi-NAC
  * @hw: pointer to HW structure
  *
- * Return: true if the device is running in mutli-NAC (Network
+ * Return: true if the device is running in multi-NAC (Network
  * Acceleration Complex) configuration variant, false otherwise
  * (always false for non-E825 devices).
  */
diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c
index d88835482d3a..fe47ec0ba809 100644
--- a/drivers/net/ethernet/intel/ice/ice_main.c
+++ b/drivers/net/ethernet/intel/ice/ice_main.c
@@ -6202,7 +6202,7 @@ ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[],
  *
  * Features that need fixing:
  *	Cannot simultaneously enable CTAG and STAG stripping and/or insertion.
- *	These are mutually exlusive as the VSI context cannot support multiple
+ *	These are mutually exclusive as the VSI context cannot support multiple
  *	VLAN ethertypes simultaneously for stripping and/or insertion. If this
  *	is not done, then default to clearing the requested STAG offload
  *	settings.
diff --git a/drivers/net/ethernet/intel/ice/ice_sriov.c b/drivers/net/ethernet/intel/ice/ice_sriov.c
index e04de0215596..9ef1aa66fa2b 100644
--- a/drivers/net/ethernet/intel/ice/ice_sriov.c
+++ b/drivers/net/ethernet/intel/ice/ice_sriov.c
@@ -924,7 +924,7 @@ static void ice_sriov_remap_vectors(struct ice_pf *pf, u16 restricted_id)
  * is correct etc. Then disable old mapping (MSI-X and queues registers), change
  * MSI-X and queues, rebuild VSI and enable new mapping.
  *
- * If it is possible (driver not binded to VF) try to remap also other VFs to
+ * If it is possible (driver not bound to VF) try to remap also other VFs to
  * linearize irqs register usage.
  */
 int ice_sriov_set_msix_vec_count(struct pci_dev *vf_dev, int msix_vec_count)

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

* [PATCH iwl-next v2 3/4] ixgbevf: fix typo "enble" in comment
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 1/4] i40e: " Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 2/4] ice: " Hemanth Selam
@ 2026-09-07  9:54 ` Hemanth Selam
  2026-09-07  9:54 ` [PATCH iwl-next v2 4/4] Documentation/eth/intel: fix repeated words in comments Hemanth Selam
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:54 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Fix a typo in comments, found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---

Notes:
    v2: designate the patch to iwl-next and use a subject prefix naming the
    component, as maintainer-netdev.rst asks; v1 went out with a bare
    [PATCH] and a "net:" prefix. Rebased onto iwl-next, diff unchanged.
    
    v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/

 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
index 7ce46b4b4821..7eb4acf59dab 100644
--- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
@@ -3995,7 +3995,7 @@ static void ixgbevf_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
 	if (tx_flags & IXGBE_TX_FLAGS_CSUM)
 		olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
 
-	/* enble IPv4 checksum for TSO */
+	/* enable IPv4 checksum for TSO */
 	if (tx_flags & IXGBE_TX_FLAGS_IPV4)
 		olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
 

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

* [PATCH iwl-next v2 4/4] Documentation/eth/intel: fix repeated words in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
                   ` (2 preceding siblings ...)
  2026-09-07  9:54 ` [PATCH iwl-next v2 3/4] ixgbevf: fix typo "enble" in comment Hemanth Selam
@ 2026-09-07  9:54 ` Hemanth Selam
  2026-09-07 17:27 ` [PATCH iwl-next v2 0/4] intel: fix typos " Randy Dunlap
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-07  9:54 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Drop repeated words reported by checkpatch.pl. Only touches
documentation text.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---

Notes:
    v2: designate the patch to iwl-next and use a subject prefix naming the
    component, as maintainer-netdev.rst asks; v1 went out with a bare
    [PATCH] and a "net:" prefix. Rebased onto iwl-next, diff unchanged.
    
    v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/

 Documentation/networking/device_drivers/ethernet/intel/i40e.rst | 2 +-
 Documentation/networking/device_drivers/ethernet/intel/iavf.rst | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/networking/device_drivers/ethernet/intel/i40e.rst b/Documentation/networking/device_drivers/ethernet/intel/i40e.rst
index 53d9d5829d69..e01f0adda3f6 100644
--- a/Documentation/networking/device_drivers/ethernet/intel/i40e.rst
+++ b/Documentation/networking/device_drivers/ethernet/intel/i40e.rst
@@ -692,7 +692,7 @@ queues: for each tc, <num queues>@<offset> (e.g. queues 16@0 16@16 assigns
 16 queues to tc0 at offset 0 and 16 queues to tc1 at offset 16. Max total
 number of queues for all tcs is 64 or number of cores, whichever is lower.)
 
-hw 1 mode channel: ‘channel’ with ‘hw’ set to 1 is a new new hardware
+hw 1 mode channel: ‘channel’ with ‘hw’ set to 1 is a new hardware
 offload mode in mqprio that makes full use of the mqprio options, the
 TCs, the queue configurations, and the QoS parameters.
 
diff --git a/Documentation/networking/device_drivers/ethernet/intel/iavf.rst b/Documentation/networking/device_drivers/ethernet/intel/iavf.rst
index eb926c3bd4cd..5840569917f5 100644
--- a/Documentation/networking/device_drivers/ethernet/intel/iavf.rst
+++ b/Documentation/networking/device_drivers/ethernet/intel/iavf.rst
@@ -171,7 +171,7 @@ queues: for each tc, <num queues>@<offset> (e.g. queues 16@0 16@16 assigns
 16 queues to tc0 at offset 0 and 16 queues to tc1 at offset 16. Max total
 number of queues for all tcs is 64 or number of cores, whichever is lower.)
 
-hw 1 mode channel: ‘channel’ with ‘hw’ set to 1 is a new new hardware
+hw 1 mode channel: ‘channel’ with ‘hw’ set to 1 is a new hardware
 offload mode in mqprio that makes full use of the mqprio options, the
 TCs, the queue configurations, and the QoS parameters.
 

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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
                   ` (3 preceding siblings ...)
  2026-09-07  9:54 ` [PATCH iwl-next v2 4/4] Documentation/eth/intel: fix repeated words in comments Hemanth Selam
@ 2026-09-07 17:27 ` Randy Dunlap
  2026-09-08  5:46   ` Hemanth Selam
  2026-09-08  6:00 ` Randy Dunlap
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 12+ messages in thread
From: Randy Dunlap @ 2026-09-07 17:27 UTC (permalink / raw)
  To: Hemanth Selam, Tony Nguyen, Przemek Kitszel, Andrew Lunn,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Shuah Khan, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc

Hi,

On 9/7/26 2:54 AM, Hemanth Selam wrote:
> Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt.  Comments only, no code
> changes.
> 
> v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
> maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> each subject now names the component it touches instead of "net:".  The
> series is rebased onto that tree; the diff is unchanged.
> 
> v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/
> 
> 
> Hemanth Selam (4):
>   i40e: fix typos in comments
>   ice: fix typos in comments
>   ixgbevf: fix typo "enble" in comment
>   Documentation/eth/intel: fix repeated words in comments
> 
>  Documentation/networking/device_drivers/ethernet/intel/i40e.rst | 2 +-
>  Documentation/networking/device_drivers/ethernet/intel/iavf.rst | 2 +-
>  drivers/net/ethernet/intel/i40e/i40e_common.c                   | 2 +-
>  drivers/net/ethernet/intel/i40e/i40e_ethtool.c                  | 2 +-
>  drivers/net/ethernet/intel/ice/ice.h                            | 2 +-
>  drivers/net/ethernet/intel/ice/ice_main.c                       | 2 +-
>  drivers/net/ethernet/intel/ice/ice_sriov.c                      | 2 +-
>  drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c               | 2 +-
>  8 files changed, 8 insertions(+), 8 deletions(-)

How did you choose iwl-next as the target tree?

The closest match to that in the MAINTAINERS file is this:
INTEL WIRELESS WIFI LINK (iwlwifi)
M:	Miri Korenblit <miriam.rachel.korenblit@intel.com>
L:	linux-wireless@vger.kernel.org
S:	Supported
W:	https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
T:	git https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next.git/
F:	drivers/net/wireless/intel/iwlwifi/

but the patches don't touch any of the Intel wifi drivers.

I expect that you want net-next there, but I could just be confuzed.

thanks.
-- 
~Randy


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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-07 17:27 ` [PATCH iwl-next v2 0/4] intel: fix typos " Randy Dunlap
@ 2026-09-08  5:46   ` Hemanth Selam
  2026-09-08  5:51     ` Randy Dunlap
  0 siblings, 1 reply; 12+ messages in thread
From: Hemanth Selam @ 2026-09-08  5:46 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, intel-wired-lan, netdev,
	linux-kernel, linux-doc

On Mon, Sep 07, 2026 at 10:27:00AM -0700, Randy Dunlap wrote:
> How did you choose iwl-next as the target tree?
>
> The closest match to that in the MAINTAINERS file is this:
> INTEL WIRELESS WIFI LINK (iwlwifi)
[...]
> but the patches don't touch any of the Intel wifi drivers.
>
> I expect that you want net-next there, but I could just be confuzed.

Sorry, the prefix is a confusing one.  Here "iwl" is Intel Wired LAN, not
iwlwifi.  It is the prefix the Intel ethernet maintainers use for their
next-queue tree, the one in MAINTAINERS under INTEL ETHERNET DRIVERS:

  L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
  T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git

Intel's own developers tag patches for that tree the same way; recent
examples on the list are the ice, idpf, ixd and libie series, all
[PATCH iwl-next].  Since these four patches only touch
drivers/net/ethernet/intel/ and its documentation, they go through that
tree rather than straight to net-next.

So I think iwl-next is right here, but Tony and Przemek should correct me
if they would rather have them another way.

Thanks for looking.

Hemanth

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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-08  5:46   ` Hemanth Selam
@ 2026-09-08  5:51     ` Randy Dunlap
  0 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2026-09-08  5:51 UTC (permalink / raw)
  To: Hemanth Selam
  Cc: Tony Nguyen, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, intel-wired-lan, netdev,
	linux-kernel, linux-doc



On 9/7/26 10:46 PM, Hemanth Selam wrote:
> On Mon, Sep 07, 2026 at 10:27:00AM -0700, Randy Dunlap wrote:
>> How did you choose iwl-next as the target tree?
>>
>> The closest match to that in the MAINTAINERS file is this:
>> INTEL WIRELESS WIFI LINK (iwlwifi)
> [...]
>> but the patches don't touch any of the Intel wifi drivers.
>>
>> I expect that you want net-next there, but I could just be confuzed.
> 
> Sorry, the prefix is a confusing one.  Here "iwl" is Intel Wired LAN, not
> iwlwifi.  It is the prefix the Intel ethernet maintainers use for their
> next-queue tree, the one in MAINTAINERS under INTEL ETHERNET DRIVERS:
> 
>   L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
>   T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
> 
> Intel's own developers tag patches for that tree the same way; recent
> examples on the list are the ice, idpf, ixd and libie series, all
> [PATCH iwl-next].  Since these four patches only touch
> drivers/net/ethernet/intel/ and its documentation, they go through that
> tree rather than straight to net-next.
> 
> So I think iwl-next is right here, but Tony and Przemek should correct me
> if they would rather have them another way.
> 
> Thanks for looking.

Thanks for the info!

-- 
~Randy


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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
                   ` (4 preceding siblings ...)
  2026-09-07 17:27 ` [PATCH iwl-next v2 0/4] intel: fix typos " Randy Dunlap
@ 2026-09-08  6:00 ` Randy Dunlap
  2026-09-09 21:07 ` Tony Nguyen
  2026-09-10  1:00 ` patchwork-bot+netdevbpf
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2026-09-08  6:00 UTC (permalink / raw)
  To: Hemanth Selam, Tony Nguyen, Przemek Kitszel, Andrew Lunn,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Jonathan Corbet, Shuah Khan, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc



On 9/7/26 2:54 AM, Hemanth Selam wrote:
> Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt.  Comments only, no code
> changes.
> 
> v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
> maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> each subject now names the component it touches instead of "net:".  The
> series is rebased onto that tree; the diff is unchanged.
> 
> v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/
> 
> 
> Hemanth Selam (4):
>   i40e: fix typos in comments
>   ice: fix typos in comments
>   ixgbevf: fix typo "enble" in comment
>   Documentation/eth/intel: fix repeated words in comments
> 
>  Documentation/networking/device_drivers/ethernet/intel/i40e.rst | 2 +-
>  Documentation/networking/device_drivers/ethernet/intel/iavf.rst | 2 +-
>  drivers/net/ethernet/intel/i40e/i40e_common.c                   | 2 +-
>  drivers/net/ethernet/intel/i40e/i40e_ethtool.c                  | 2 +-
>  drivers/net/ethernet/intel/ice/ice.h                            | 2 +-
>  drivers/net/ethernet/intel/ice/ice_main.c                       | 2 +-
>  drivers/net/ethernet/intel/ice/ice_sriov.c                      | 2 +-
>  drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c               | 2 +-
>  8 files changed, 8 insertions(+), 8 deletions(-)

For the series:

Acked-by: Randy Dunlap <rdunlap@infradead.org>

thanks.
-- 
~Randy

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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
                   ` (5 preceding siblings ...)
  2026-09-08  6:00 ` Randy Dunlap
@ 2026-09-09 21:07 ` Tony Nguyen
  2026-09-10  0:50   ` Jakub Kicinski
  2026-09-10  1:00 ` patchwork-bot+netdevbpf
  7 siblings, 1 reply; 12+ messages in thread
From: Tony Nguyen @ 2026-09-09 21:07 UTC (permalink / raw)
  To: Hemanth Selam, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Jonathan Corbet, Shuah Khan, Randy Dunlap, intel-wired-lan
  Cc: netdev, linux-kernel, linux-doc



On 9/7/2026 2:54 AM, Hemanth Selam wrote:
> Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt.  Comments only, no code
> changes.
> 
> v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
> maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> each subject now names the component it touches instead of "net:".  The
> series is rebased onto that tree; the diff is unchanged.

Thanks for the changes; looks good. However...

netdev maintainers: Everything looks good to me and since there's no 
testing to be done. Did you want to take this directly?

If so,

Reviewed-by: Tony Nguyen <anthony.l.nguyen@intel.com>
> 
> v1: https://lore.kernel.org/all/20260907064528.6602-1-hemanth.selam@gmail.com/
> 
> 
> Hemanth Selam (4):
>    i40e: fix typos in comments
>    ice: fix typos in comments
>    ixgbevf: fix typo "enble" in comment
>    Documentation/eth/intel: fix repeated words in comments
> 
>   Documentation/networking/device_drivers/ethernet/intel/i40e.rst | 2 +-
>   Documentation/networking/device_drivers/ethernet/intel/iavf.rst | 2 +-
>   drivers/net/ethernet/intel/i40e/i40e_common.c                   | 2 +-
>   drivers/net/ethernet/intel/i40e/i40e_ethtool.c                  | 2 +-
>   drivers/net/ethernet/intel/ice/ice.h                            | 2 +-
>   drivers/net/ethernet/intel/ice/ice_main.c                       | 2 +-
>   drivers/net/ethernet/intel/ice/ice_sriov.c                      | 2 +-
>   drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c               | 2 +-
>   8 files changed, 8 insertions(+), 8 deletions(-)


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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-09 21:07 ` Tony Nguyen
@ 2026-09-10  0:50   ` Jakub Kicinski
  0 siblings, 0 replies; 12+ messages in thread
From: Jakub Kicinski @ 2026-09-10  0:50 UTC (permalink / raw)
  To: Tony Nguyen
  Cc: Hemanth Selam, Przemek Kitszel, Andrew Lunn, David S. Miller,
	Eric Dumazet, Paolo Abeni, Simon Horman, Jonathan Corbet,
	Shuah Khan, Randy Dunlap, intel-wired-lan, netdev, linux-kernel,
	linux-doc

On Wed, 9 Sep 2026 14:07:25 -0700 Tony Nguyen wrote:
> On 9/7/2026 2:54 AM, Hemanth Selam wrote:
> > Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
> > misspelling list in scripts/spelling.txt.  Comments only, no code
> > changes.
> > 
> > v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
> > maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> > each subject now names the component it touches instead of "net:".  The
> > series is rebased onto that tree; the diff is unchanged.  
> 
> Thanks for the changes; looks good. However...
> 
> netdev maintainers: Everything looks good to me and since there's no 
> testing to be done. Did you want to take this directly?
> 
> If so,
> 
> Reviewed-by: Tony Nguyen <anthony.l.nguyen@intel.com>

SGTM, probably saves everyone a little bit of time if we take directly

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

* Re: [PATCH iwl-next v2 0/4] intel: fix typos in comments
  2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
                   ` (6 preceding siblings ...)
  2026-09-09 21:07 ` Tony Nguyen
@ 2026-09-10  1:00 ` patchwork-bot+netdevbpf
  7 siblings, 0 replies; 12+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-10  1:00 UTC (permalink / raw)
  To: Hemanth Selam
  Cc: anthony.l.nguyen, przemyslaw.kitszel, andrew+netdev, davem,
	edumazet, kuba, pabeni, horms, corbet, skhan, rdunlap,
	intel-wired-lan, netdev, linux-kernel, linux-doc

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon,  7 Sep 2026 15:24:42 +0530 you wrote:
> Comment typos across the Intel ethernet drivers, split per driver.  Found with scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt.  Comments only, no code
> changes.
> 
> v1 went out with a bare [PATCH] and a "net:" subject prefix.  As
> maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> each subject now names the component it touches instead of "net:".  The
> series is rebased onto that tree; the diff is unchanged.
> 
> [...]

Here is the summary with links:
  - [iwl-next,v2,1/4] i40e: fix typos in comments
    https://git.kernel.org/netdev/net-next/c/42fe5a08078f
  - [iwl-next,v2,2/4] ice: fix typos in comments
    https://git.kernel.org/netdev/net-next/c/e2700f56c33e
  - [iwl-next,v2,3/4] ixgbevf: fix typo "enble" in comment
    https://git.kernel.org/netdev/net-next/c/47ea470150c8
  - [iwl-next,v2,4/4] Documentation/eth/intel: fix repeated words in comments
    https://git.kernel.org/netdev/net-next/c/f3056082e084

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2026-09-10  1:01 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07  9:54 [PATCH iwl-next v2 0/4] intel: fix typos in comments Hemanth Selam
2026-09-07  9:54 ` [PATCH iwl-next v2 1/4] i40e: " Hemanth Selam
2026-09-07  9:54 ` [PATCH iwl-next v2 2/4] ice: " Hemanth Selam
2026-09-07  9:54 ` [PATCH iwl-next v2 3/4] ixgbevf: fix typo "enble" in comment Hemanth Selam
2026-09-07  9:54 ` [PATCH iwl-next v2 4/4] Documentation/eth/intel: fix repeated words in comments Hemanth Selam
2026-09-07 17:27 ` [PATCH iwl-next v2 0/4] intel: fix typos " Randy Dunlap
2026-09-08  5:46   ` Hemanth Selam
2026-09-08  5:51     ` Randy Dunlap
2026-09-08  6:00 ` Randy Dunlap
2026-09-09 21:07 ` Tony Nguyen
2026-09-10  0:50   ` Jakub Kicinski
2026-09-10  1:00 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.