mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net-next] octeontx2: collapse consecutive blank lines in source files
@ 2026-09-08  6:11 Ratheesh Kannoth
  2026-09-09 16:26 ` Simon Horman
  2026-09-11  8:40 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Ratheesh Kannoth @ 2026-09-08  6:11 UTC (permalink / raw)
  To: linux-kernel, netdev
  Cc: andrew+netdev, davem, edumazet, kuba, pabeni, sgoutham, Ratheesh Kannoth

Remove extra blank lines across the octeontx2 driver source.

Signed-off-by: Ratheesh Kannoth <rkannoth@marvell.com>
---
 drivers/net/ethernet/marvell/octeontx2/af/cgx.c     | 2 --
 drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h | 2 --
 drivers/net/ethernet/marvell/octeontx2/nic/qos.h    | 2 --
 3 files changed, 6 deletions(-)

diff --git a/drivers/net/ethernet/marvell/octeontx2/af/cgx.c b/drivers/net/ethernet/marvell/octeontx2/af/cgx.c
index 3696bec7a8fc..8ced44a4495e 100644
--- a/drivers/net/ethernet/marvell/octeontx2/af/cgx.c
+++ b/drivers/net/ethernet/marvell/octeontx2/af/cgx.c
@@ -2043,8 +2043,6 @@ static int cgx_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	}
 
 	list_add(&cgx->cgx_list, &cgx_list);
-
-
 	cgx_populate_features(cgx);
 
 	mutex_init(&cgx->lock);
diff --git a/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h b/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h
index f4c6de89002c..ec932a592707 100644
--- a/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h
+++ b/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h
@@ -19,8 +19,6 @@
 		offset = 0xa28ull;			\
 	offset += (a) * 0x8ull;				\
 	offset; })
-
-
 #define MCSX_MCS_TOP_SLAVE_CHANNEL_CFG(a) ({		\
 	u64 offset;					\
 							\
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/qos.h b/drivers/net/ethernet/marvell/octeontx2/nic/qos.h
index 221bd0438f60..bd12174bf94e 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/qos.h
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/qos.h
@@ -73,6 +73,4 @@ struct otx2_qos_node {
 	u8 level;
 	bool is_static;
 };
-
-
 #endif
-- 
2.43.0


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

* Re: [PATCH net-next] octeontx2: collapse consecutive blank lines in source files
  2026-09-08  6:11 [PATCH net-next] octeontx2: collapse consecutive blank lines in source files Ratheesh Kannoth
@ 2026-09-09 16:26 ` Simon Horman
  2026-09-11  8:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-09-09 16:26 UTC (permalink / raw)
  To: Ratheesh Kannoth
  Cc: linux-kernel, netdev, andrew+netdev, davem, edumazet, kuba,
	pabeni, sgoutham

On Tue, Sep 08, 2026 at 11:41:13AM +0530, Ratheesh Kannoth wrote:
> Remove extra blank lines across the octeontx2 driver source.
> 
> Signed-off-by: Ratheesh Kannoth <rkannoth@marvell.com>

As there are many non-trivial changes coming from you for this driver
I think we can treat this as a clean-up in the context of that ongoing
work.

Reviewed-by: Simon Horman <horms@kernel.org>

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

* Re: [PATCH net-next] octeontx2: collapse consecutive blank lines in source files
  2026-09-08  6:11 [PATCH net-next] octeontx2: collapse consecutive blank lines in source files Ratheesh Kannoth
  2026-09-09 16:26 ` Simon Horman
@ 2026-09-11  8:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-11  8:40 UTC (permalink / raw)
  To: Ratheesh Kannoth
  Cc: linux-kernel, netdev, andrew+netdev, davem, edumazet, kuba,
	pabeni, sgoutham

Hello:

This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Tue, 8 Sep 2026 11:41:13 +0530 you wrote:
> Remove extra blank lines across the octeontx2 driver source.
> 
> Signed-off-by: Ratheesh Kannoth <rkannoth@marvell.com>
> ---
>  drivers/net/ethernet/marvell/octeontx2/af/cgx.c     | 2 --
>  drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h | 2 --
>  drivers/net/ethernet/marvell/octeontx2/nic/qos.h    | 2 --
>  3 files changed, 6 deletions(-)

Here is the summary with links:
  - [net-next] octeontx2: collapse consecutive blank lines in source files
    https://git.kernel.org/netdev/net-next/c/17d3afadf539

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] 3+ messages in thread

end of thread, other threads:[~2026-09-11  8:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-08  6:11 [PATCH net-next] octeontx2: collapse consecutive blank lines in source files Ratheesh Kannoth
2026-09-09 16:26 ` Simon Horman
2026-09-11  8:40 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®