All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net/macmace: Replace zero-length array with DECLARE_FLEX_ARRAY() helper
@ 2023-07-30 23:14 ` Atul Raut
  0 siblings, 0 replies; 10+ messages in thread
From: Atul Raut @ 2023-07-30 23:14 UTC (permalink / raw)
  To: avem; +Cc: rafal, netdev, pabeni, linux-kernel-mentees, kuba

Since zero-length arrays are deprecated, we are replacing
them with C99 flexible-array members. As a result, instead
of declaring a zero-length array, use the new
DECLARE_FLEX_ARRAY() helper macro.

This fixes warnings such as:
./drivers/net/ethernet/apple/macmace.c:80:4-8: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)

Signed-off-by: Atul Raut <rauji.raut@gmail.com>
---
 drivers/net/ethernet/apple/macmace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/apple/macmace.c b/drivers/net/ethernet/apple/macmace.c
index 8fcaf1639920..8775c3234e91 100644
--- a/drivers/net/ethernet/apple/macmace.c
+++ b/drivers/net/ethernet/apple/macmace.c
@@ -77,7 +77,7 @@ struct mace_frame {
 	u8	pad4;
 	u32	pad5;
 	u32	pad6;
-	u8	data[1];
+	DECLARE_FLEX_ARRAY(u8, data);
 	/* And frame continues.. */
 };
 
-- 
2.34.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

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

end of thread, other threads:[~2023-08-01 22:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-30 23:14 [PATCH] net/macmace: Replace zero-length array with DECLARE_FLEX_ARRAY() helper Atul Raut
2023-07-30 23:14 ` Atul Raut
2023-07-31  7:38 ` Leon Romanovsky
2023-07-31  7:38   ` Leon Romanovsky
2023-08-01 14:09   ` Larysa Zaremba
2023-08-01 14:09     ` Larysa Zaremba
2023-08-01 21:51     ` Jakub Kicinski
2023-08-01 21:51       ` Jakub Kicinski
2023-08-01 22:00 ` patchwork-bot+netdevbpf
2023-08-01 22: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.