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 <[email protected]>
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 <[email protected]>
Reviewed-by: Bryan O'Donoghue <[email protected]>
Acked-by: Vikash Garodia <[email protected]>
Signed-off-by: Stanimir Varbanov <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>

 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 {

Reply via email to