]> git.baikalelectronics.ru Git - kernel.git/commit
firmware: dmi-sysfs: Replace zero-length array with flexible-array member
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Fri, 21 Feb 2020 15:15:44 +0000 (09:15 -0600)
committerGustavo A. R. Silva <gustavoars@kernel.org>
Tue, 16 Jun 2020 04:08:04 +0000 (23:08 -0500)
commit31cab99054f500296395ea0a5445a76a2bd31a5f
tree8710f5bbd54143cc0336744e67113e36550a322e
parent74a27a5f5a99e6b5adfd790053b6cccac3270c76
firmware: dmi-sysfs: Replace zero-length array with flexible-array member

There is a regular need in the kernel to provide a way to declare having a
dynamically sized set of trailing elements in a structure. Kernel code should
always use “flexible array members”[1] for these cases. The older style of
one-element or zero-length arrays should no longer be used[2].

[1] https://en.wikipedia.org/wiki/Flexible_array_member
[2] https://github.com/KSPP/linux/issues/21

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
drivers/firmware/dmi-sysfs.c