From: Deepak R Varma <drv@mailo.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Cc: gustavoars@kernel.org
Subject: [PATCH] staging: wlan-ng: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper
Date: Thu, 17 Nov 2022 15:48:45 +0530 [thread overview]
Message-ID: <Y3YKhee8L+kAfHM4@qemulion> (raw)
The code currently uses C90 standard extension based zero length arrays.
The zero length array member also happens to be the only member of the
structs. Such zero length array declarations are deprecated and the
new C99 standard extension of flexible array declarations are to be
used instead.
The DECLARE_FLEX_ARRAY() helper allows for a flexible array member as
the only member in a structure. Refer to these links [1], [2] for
details.
[1] https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
[2] https://lkml.kernel.org/r/YxKY6O2hmdwNh8r8@work
Issue identified using Coccinelle.
Signed-off-by: Deepak R Varma <drv@mailo.com>
---
Notes:
1. Proposed change is compile tested only.
2. Solution feedback from gustavoars@kernel.org
drivers/staging/wlan-ng/hfa384x.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h
index 0611e37df6ac..3a1edcb43e07 100644
--- a/drivers/staging/wlan-ng/hfa384x.h
+++ b/drivers/staging/wlan-ng/hfa384x.h
@@ -960,15 +960,15 @@ struct hfa384x_pdr_nicid {
} __packed;
struct hfa384x_pdr_refdac_measurements {
- u16 value[0];
+ DECLARE_FLEX_ARRAY(u16, value);
} __packed;
struct hfa384x_pdr_vgdac_measurements {
- u16 value[0];
+ DECLARE_FLEX_ARRAY(u16, value);
} __packed;
struct hfa384x_pdr_level_comp_measurements {
- u16 value[0];
+ DECLARE_FLEX_ARRAY(u16, value);
} __packed;
struct hfa384x_pdr_mac_address {
--
2.34.1
next reply other threads:[~2022-11-17 10:19 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-17 10:18 Deepak R Varma [this message]
2022-11-17 12:54 ` [PATCH] staging: wlan-ng: Replace zero-length arrays with DECLARE_FLEX_ARRAY() helper Greg Kroah-Hartman
2022-11-17 13:20 ` Deepak R Varma
2022-11-17 18:03 ` Greg Kroah-Hartman
2022-11-19 14:38 ` Deepak R Varma
2022-11-28 7:45 ` Deepak R Varma
2022-11-28 7:50 ` Dan Carpenter
2022-11-28 8:21 ` Deepak R Varma
2022-11-28 8:25 ` Dan Carpenter
2022-11-28 8:26 ` Deepak R Varma
2022-11-28 7:53 ` Greg Kroah-Hartman
2022-11-28 8:23 ` Deepak R Varma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y3YKhee8L+kAfHM4@qemulion \
--to=drv@mailo.com \
--cc=gregkh@linuxfoundation.org \
--cc=gustavoars@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox