From eb23fbeab0b02e6998467411e7d4faf62fda0f8a Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sun, 30 Jul 2023 12:55:53 +0200 Subject: vendorcode/cavium: Use C99 flexible arrays Use C99 flexible arrays instead of older style of one-element or zero-length arrays. It allows the compiler to generate errors when the flexible array does not occur at the end in the structure. Change-Id: I19c029968584fedbb6749e66c7ea2f74a7d580f4 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/76811 Tested-by: build bot (Jenkins) Reviewed-by: Martin L Roth --- src/vendorcode/cavium/bdk/libbdk-hal/bdk-nic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vendorcode/cavium/bdk') diff --git a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-nic.c b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-nic.c index b6a9384e10..1a996365be 100644 --- a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-nic.c +++ b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-nic.c @@ -80,7 +80,7 @@ typedef struct int next_free_cpi; int next_free_rssi; int next_free_bpid; - nic_t *nic_map[0]; /* Indexed by handle->nic_id */ + nic_t *nic_map[]; /* Indexed by handle->nic_id */ } nic_node_state_t; static nic_node_state_t *global_node_state[BDK_NUMA_MAX_NODES]; -- cgit v1.2.3