mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
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>
This commit is contained in:
committed by
Gustavo A. R. Silva
parent
b3a9e3b962
commit
8e849a4127
@@ -262,7 +262,7 @@ struct dmi_system_event_log {
|
||||
u8 header_format;
|
||||
u8 type_descriptors_supported_count;
|
||||
u8 per_log_type_descriptor_length;
|
||||
u8 supported_log_type_descriptos[0];
|
||||
u8 supported_log_type_descriptos[];
|
||||
} __packed;
|
||||
|
||||
#define DMI_SYSFS_SEL_FIELD(_field) \
|
||||
|
Reference in New Issue
Block a user