Commit fbfa49f9 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Tony Nguyen

i40e: Replace one-element array with flex-array member in struct i40e_profile_segment

One-element and zero-length arrays are deprecated. So, replace
one-element array in struct i40e_profile_segment with flexible-array
member.

This results in no differences in binary output.

Link: https://github.com/KSPP/linux/issues/335Signed-off-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel)
Tested-by: default avatarJustin Stitt <justinstitt@google.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent e55c50ea
......@@ -1486,7 +1486,7 @@ struct i40e_profile_segment {
struct i40e_ddp_version version;
char name[I40E_DDP_NAME_SIZE];
u32 device_table_count;
struct i40e_device_id_entry device_table[1];
struct i40e_device_id_entry device_table[];
};
struct i40e_section_table {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment