[PATCH net-next v1 5/7] net: hsr: remove unnecessary braces for single statement block
From: luka . gejak
Date: Tue Mar 24 2026 - 10:54:22 EST
From: Luka Gejak <luka.gejak@xxxxxxxxx>
Remove the unnecessary curly braces around the single statement
for loop body in hsr_add_node() as per kernel coding style.
Signed-off-by: Luka Gejak <luka.gejak@xxxxxxxxx>
---
net/hsr/hsr_framereg.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net/hsr/hsr_framereg.c b/net/hsr/hsr_framereg.c
index 577fb588bc2f..9c3b7381788e 100644
--- a/net/hsr/hsr_framereg.c
+++ b/net/hsr/hsr_framereg.c
@@ -182,9 +182,8 @@ static struct hsr_node *hsr_add_node(struct hsr_priv *hsr,
* as initialization. (0 could trigger an spurious ring error warning).
*/
now = jiffies;
- for (i = 0; i < HSR_PT_PORTS; i++) {
+ for (i = 0; i < HSR_PT_PORTS; i++)
new_node->time_in[i] = now;
- }
if (san && hsr->proto_ops->handle_san_frame)
hsr->proto_ops->handle_san_frame(san, rx_port, new_node);
--
2.53.0