* [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error
@ 2026-05-04 16:07 Holger Brunck
2026-05-05 5:31 ` Christophe Leroy (CS GROUP)
0 siblings, 1 reply; 4+ messages in thread
From: Holger Brunck @ 2026-05-04 16:07 UTC (permalink / raw)
To: netdev
Cc: linuxppc-dev, andrew+netdev, chleroy, qiang.zhao, horms,
Holger Brunck
Remove the whitespace to fix the indentation.
Fixes: c19b6d246a35 ("drivers/net: support hdlc function for QE-UCC")
Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
---
drivers/net/wan/fsl_ucc_hdlc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wan/fsl_ucc_hdlc.c b/drivers/net/wan/fsl_ucc_hdlc.c
index 09081f128a98..adf3863463f5 100644
--- a/drivers/net/wan/fsl_ucc_hdlc.c
+++ b/drivers/net/wan/fsl_ucc_hdlc.c
@@ -764,7 +764,7 @@ static void uhdlc_memclean(struct ucc_hdlc_private *priv)
qe_muram_free(priv->ucc_pram_offset);
priv->ucc_pram = NULL;
priv->ucc_pram_offset = 0;
- }
+ }
kfree(priv->rx_skbuff);
priv->rx_skbuff = NULL;
--
2.47.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error
2026-05-04 16:07 [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error Holger Brunck
@ 2026-05-05 5:31 ` Christophe Leroy (CS GROUP)
2026-05-05 8:16 ` Holger Brunck
0 siblings, 1 reply; 4+ messages in thread
From: Christophe Leroy (CS GROUP) @ 2026-05-05 5:31 UTC (permalink / raw)
To: Holger Brunck, netdev; +Cc: linuxppc-dev, andrew+netdev, qiang.zhao, horms
Hi,
Le 04/05/2026 à 18:07, Holger Brunck a écrit :
> Remove the whitespace to fix the indentation.
Do we really need a patch for that ? What's the added value of doing
this change compared to the cost of doing it ?
>
> Fixes: c19b6d246a35 ("drivers/net: support hdlc function for QE-UCC")
> Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
> ---
> drivers/net/wan/fsl_ucc_hdlc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/wan/fsl_ucc_hdlc.c b/drivers/net/wan/fsl_ucc_hdlc.c
> index 09081f128a98..adf3863463f5 100644
> --- a/drivers/net/wan/fsl_ucc_hdlc.c
> +++ b/drivers/net/wan/fsl_ucc_hdlc.c
> @@ -764,7 +764,7 @@ static void uhdlc_memclean(struct ucc_hdlc_private *priv)
> qe_muram_free(priv->ucc_pram_offset);
> priv->ucc_pram = NULL;
> priv->ucc_pram_offset = 0;
> - }
> + }
>
> kfree(priv->rx_skbuff);
> priv->rx_skbuff = NULL;
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error
2026-05-05 5:31 ` Christophe Leroy (CS GROUP)
@ 2026-05-05 8:16 ` Holger Brunck
2026-05-05 23:48 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: Holger Brunck @ 2026-05-05 8:16 UTC (permalink / raw)
To: Christophe Leroy (CS GROUP), netdev@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org, andrew+netdev@lunn.ch,
qiang.zhao@nxp.com, horms@kernel.org
>
> Le 04/05/2026 à 18:07, Holger Brunck a écrit :
> > Remove the whitespace to fix the indentation.
>
> Do we really need a patch for that ? What's the added value of doing this change
> compared to the cost of doing it ?
>
no not mandatory needed. I just saw that and thought that also such minor issues
should be fixed. Can be abandoned.
Best regards
Holger
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error
2026-05-05 8:16 ` Holger Brunck
@ 2026-05-05 23:48 ` Jakub Kicinski
0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2026-05-05 23:48 UTC (permalink / raw)
To: Holger Brunck
Cc: Christophe Leroy (CS GROUP), netdev@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, andrew+netdev@lunn.ch,
qiang.zhao@nxp.com, horms@kernel.org
On Tue, 5 May 2026 08:16:01 +0000 Holger Brunck wrote:
> no not mandatory needed. I just saw that and thought that also such minor issues
> should be fixed. Can be abandoned.
Quoting documentation:
Clean-up patches
~~~~~~~~~~~~~~~~
Netdev discourages patches which perform simple clean-ups, which are not in
the context of other work. For example:
* Addressing ``checkpatch.pl``, and other trivial coding style warnings
* Addressing :ref:`Local variable ordering<rcs>` issues
* Conversions to device-managed APIs (``devm_`` helpers)
This is because it is felt that the churn that such changes produce comes
at a greater cost than the value of such clean-ups.
Conversely, spelling and grammar fixes are not discouraged.
See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#clean-up-patches
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-05-05 23:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-04 16:07 [PATCH net] net: wan: fsl_ucc_hdlc: fix indentation error Holger Brunck
2026-05-05 5:31 ` Christophe Leroy (CS GROUP)
2026-05-05 8:16 ` Holger Brunck
2026-05-05 23:48 ` Jakub Kicinski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox