This is an automatic generated email to let you know that the following patch were queued:
Subject: media: venus: Refactor hfi_session_empty_buffer_compressed_pkt Author: Ricardo Ribalda <riba...@chromium.org> Date: Wed Aug 14 11:39:26 2024 +0000 The single element array data[1] is never used. Replace it with a padding field of the same size. This fixes the following cocci warning: drivers/media/platform/qcom/venus/hfi_cmds.h:146:5-9: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays) Signed-off-by: Ricardo Ribalda <riba...@chromium.org> Reviewed-by: Bryan O'Donoghue <bryan.odonog...@linaro.org> Acked-by: Vikash Garodia <quic_vgaro...@quicinc.com> Signed-off-by: Stanimir Varbanov <stanimir.k.varba...@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl> drivers/media/platform/qcom/venus/hfi_cmds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.h b/drivers/media/platform/qcom/venus/hfi_cmds.h index 40d19516f5a2..f2306e37078f 100644 --- a/drivers/media/platform/qcom/venus/hfi_cmds.h +++ b/drivers/media/platform/qcom/venus/hfi_cmds.h @@ -151,7 +151,7 @@ struct hfi_session_empty_buffer_compressed_pkt { u32 input_tag; u32 packet_buffer; u32 extradata_buffer; - u32 data[1]; + u32 data; }; struct hfi_session_empty_buffer_uncompressed_plane0_pkt {