* [PATCH v4 01/11] media: dvb-frontend/mxl5xx: Refactor struct MBIN_FILE_T and MBIN_SEGMENT_T
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 02/11] media: venus: Remove unused structs Ricardo Ribalda
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
Replace the older style one-element array with a flexible array member.
There does not seem to be any allocation for these structs in the code, so
no more code changes are required.
The following cocci warnings are fixed:
drivers/media/dvb-frontends/mxl5xx_defs.h:182:4-8: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/dvb-frontends/mxl5xx_defs.h:171:4-8: 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 <ribalda@chromium.org>
---
drivers/media/dvb-frontends/mxl5xx_defs.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/dvb-frontends/mxl5xx_defs.h b/drivers/media/dvb-frontends/mxl5xx_defs.h
index 097271f73740..bf08d82ba2cc 100644
--- a/drivers/media/dvb-frontends/mxl5xx_defs.h
+++ b/drivers/media/dvb-frontends/mxl5xx_defs.h
@@ -168,7 +168,7 @@ struct MBIN_FILE_HEADER_T {
struct MBIN_FILE_T {
struct MBIN_FILE_HEADER_T header;
- u8 data[1];
+ u8 data[];
};
struct MBIN_SEGMENT_HEADER_T {
@@ -179,7 +179,7 @@ struct MBIN_SEGMENT_HEADER_T {
struct MBIN_SEGMENT_T {
struct MBIN_SEGMENT_HEADER_T header;
- u8 data[1];
+ u8 data[];
};
enum MXL_CMD_TYPE_E { MXL_CMD_WRITE = 0, MXL_CMD_READ };
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 02/11] media: venus: Remove unused structs
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 01/11] media: dvb-frontend/mxl5xx: Refactor struct MBIN_FILE_T and MBIN_SEGMENT_T Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 03/11] media: venus: Use flex array for hfi_session_release_buffer_pkt Ricardo Ribalda
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
This structures are not used, and have a single element array at the end
of them. Remove them.
This fix the following cocci warnings:
drivers/media/platform/qcom/venus/hfi_helper.h:764:5-15: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1041:5-15: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1088:39-51: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1093:5-22: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1144:4-8: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1239:4-8: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_helper.h:1272:4-13: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_cmds.h:85:5-16: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_cmds.h:180:5-9: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
drivers/media/platform/qcom/venus/hfi_cmds.h:189: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 <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_cmds.h | 26 -----------------
drivers/media/platform/qcom/venus/hfi_helper.h | 39 --------------------------
2 files changed, 65 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.h b/drivers/media/platform/qcom/venus/hfi_cmds.h
index 20acd412ee7b..41f765eac4d9 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -77,14 +77,6 @@ struct hfi_sys_get_property_pkt {
u32 data[1];
};
-struct hfi_sys_set_buffers_pkt {
- struct hfi_pkt_hdr hdr;
- u32 buffer_type;
- u32 buffer_size;
- u32 num_buffers;
- u32 buffer_addr[1];
-};
-
struct hfi_sys_ping_pkt {
struct hfi_pkt_hdr hdr;
u32 client_data;
@@ -171,24 +163,6 @@ struct hfi_session_empty_buffer_uncompressed_plane0_pkt {
u32 data[1];
};
-struct hfi_session_empty_buffer_uncompressed_plane1_pkt {
- u32 flags;
- u32 alloc_len;
- u32 filled_len;
- u32 offset;
- u32 packet_buffer2;
- u32 data[1];
-};
-
-struct hfi_session_empty_buffer_uncompressed_plane2_pkt {
- u32 flags;
- u32 alloc_len;
- u32 filled_len;
- u32 offset;
- u32 packet_buffer3;
- u32 data[1];
-};
-
struct hfi_session_fill_buffer_pkt {
struct hfi_session_hdr_pkt shdr;
u32 stream_id;
diff --git a/drivers/media/platform/qcom/venus/hfi_helper.h b/drivers/media/platform/qcom/venus/hfi_helper.h
index e4c05d62cfc7..7c0edef263ae 100644
--- a/drivers/media/platform/qcom/venus/hfi_helper.h
+++ b/drivers/media/platform/qcom/venus/hfi_helper.h
@@ -759,11 +759,6 @@ struct hfi_multi_stream_3x {
u32 enable;
};
-struct hfi_multi_view_format {
- u32 views;
- u32 view_order[1];
-};
-
#define HFI_MULTI_SLICE_OFF 0x1
#define HFI_MULTI_SLICE_BY_MB_COUNT 0x2
#define HFI_MULTI_SLICE_BY_BYTE_COUNT 0x3
@@ -1036,11 +1031,6 @@ struct hfi_codec_supported {
u32 enc_codecs;
};
-struct hfi_properties_supported {
- u32 num_properties;
- u32 properties[1];
-};
-
struct hfi_max_sessions_supported {
u32 max_sessions;
};
@@ -1083,16 +1073,6 @@ struct hfi_resource_ocmem_requirement {
u32 size;
};
-struct hfi_resource_ocmem_requirement_info {
- u32 num_entries;
- struct hfi_resource_ocmem_requirement requirements[1];
-};
-
-struct hfi_property_sys_image_version_info_type {
- u32 string_size;
- u8 str_image_version[1];
-};
-
struct hfi_codec_mask_supported {
u32 codecs;
u32 video_domains;
@@ -1135,15 +1115,6 @@ struct hfi_index_extradata_config {
u32 index_extra_data_id;
};
-struct hfi_extradata_header {
- u32 size;
- u32 version;
- u32 port_index;
- u32 type;
- u32 data_size;
- u8 data[1];
-};
-
struct hfi_batch_info {
u32 input_batch_count;
u32 output_batch_count;
@@ -1234,11 +1205,6 @@ static inline void hfi_bufreq_set_count_min_host(struct hfi_buffer_requirements
req->count_min = val;
};
-struct hfi_data_payload {
- u32 size;
- u8 data[1];
-};
-
struct hfi_enable_picture {
u32 picture_type;
};
@@ -1267,11 +1233,6 @@ struct hfi_buffer_alloc_mode_supported {
u32 data[1];
};
-struct hfi_mb_error_map {
- u32 error_map_size;
- u8 error_map[1];
-};
-
struct hfi_metadata_pass_through {
int enable;
u32 size;
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 03/11] media: venus: Use flex array for hfi_session_release_buffer_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 01/11] media: dvb-frontend/mxl5xx: Refactor struct MBIN_FILE_T and MBIN_SEGMENT_T Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 02/11] media: venus: Remove unused structs Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 04/11] media: venus: Refactor struct hfi_uncompressed_plane_info Ricardo Ribalda
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
Replace the old style single element array with a flex array. We do not
allocate this structure, so the size change should not be an issue.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_cmds.h:204:5-16: 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 <ribalda@chromium.org>
---
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 41f765eac4d9..6dff949c4402 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -201,7 +201,7 @@ struct hfi_session_release_buffer_pkt {
u32 extradata_size;
u32 response_req;
u32 num_buffers;
- u32 buffer_info[1];
+ u32 buffer_info[];
};
struct hfi_session_release_resources_pkt {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 04/11] media: venus: Refactor struct hfi_uncompressed_plane_info
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (2 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 03/11] media: venus: Use flex array for hfi_session_release_buffer_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 05/11] media: venus: Refactor struct hfi_session_get_property_pkt Ricardo Ribalda
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
This field is never used, but if we remove it we would change the size
of the struct and can lead to behavior change. Stay on the safe side by
replacing the single element array with a single element field.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_helper.h:1003:43-60: 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 <ribalda@chromium.org>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
drivers/media/platform/qcom/venus/hfi_helper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_helper.h b/drivers/media/platform/qcom/venus/hfi_helper.h
index 7c0edef263ae..eb0a4c64b7ef 100644
--- a/drivers/media/platform/qcom/venus/hfi_helper.h
+++ b/drivers/media/platform/qcom/venus/hfi_helper.h
@@ -1000,7 +1000,7 @@ struct hfi_uncompressed_plane_constraints {
struct hfi_uncompressed_plane_info {
u32 format;
u32 num_planes;
- struct hfi_uncompressed_plane_constraints plane_constraints[1];
+ struct hfi_uncompressed_plane_constraints plane_constraints;
};
struct hfi_uncompressed_format_supported {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 05/11] media: venus: Refactor struct hfi_session_get_property_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (3 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 04/11] media: venus: Refactor struct hfi_uncompressed_plane_info Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 06/11] media: venus: Refactor struct hfi_uncompressed_format_supported Ricardo Ribalda
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
The struct hfi_session_get_property_pkt is always used to fectch a
single property. Make that explicit in the code and avoid a single
element array at the end of the struct.
This change fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_cmds.h:194:5-9: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_cmds.c | 4 ++--
drivers/media/platform/qcom/venus/hfi_cmds.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.c b/drivers/media/platform/qcom/venus/hfi_cmds.c
index 3418d2dd9371..75f4a3d3e748 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.c
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.c
@@ -402,7 +402,7 @@ static int pkt_session_get_property_1x(struct hfi_session_get_property_pkt *pkt,
pkt->shdr.hdr.pkt_type = HFI_CMD_SESSION_GET_PROPERTY;
pkt->shdr.session_id = hash32_ptr(cookie);
pkt->num_properties = 1;
- pkt->data[0] = ptype;
+ pkt->data = ptype;
return 0;
}
@@ -1110,7 +1110,7 @@ pkt_session_get_property_3xx(struct hfi_session_get_property_pkt *pkt,
switch (ptype) {
case HFI_PROPERTY_CONFIG_VDEC_ENTROPY:
- pkt->data[0] = HFI_PROPERTY_CONFIG_VDEC_ENTROPY;
+ pkt->data = HFI_PROPERTY_CONFIG_VDEC_ENTROPY;
break;
default:
ret = pkt_session_get_property_1x(pkt, cookie, ptype);
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.h b/drivers/media/platform/qcom/venus/hfi_cmds.h
index 6dff949c4402..f5708fdfb197 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -191,7 +191,7 @@ struct hfi_session_resume_pkt {
struct hfi_session_get_property_pkt {
struct hfi_session_hdr_pkt shdr;
u32 num_properties;
- u32 data[1];
+ u32 data;
};
struct hfi_session_release_buffer_pkt {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 06/11] media: venus: Refactor struct hfi_uncompressed_format_supported
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (4 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 05/11] media: venus: Refactor struct hfi_session_get_property_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 07/11] media: venus: Refactor hfi_session_empty_buffer_uncompressed_plane0_pkt Ricardo Ribalda
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
plane_info is not a typical array, the data is not contiguous:
pinfo = (void *)pinfo + sizeof(*constr) * num_planes +
2 * sizeof(u32);
Replace the single element array with a single element field.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_helper.h:1009:36-46: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_helper.h | 2 +-
drivers/media/platform/qcom/venus/hfi_parser.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_helper.h b/drivers/media/platform/qcom/venus/hfi_helper.h
index eb0a4c64b7ef..dee439ea4d2e 100644
--- a/drivers/media/platform/qcom/venus/hfi_helper.h
+++ b/drivers/media/platform/qcom/venus/hfi_helper.h
@@ -1006,7 +1006,7 @@ struct hfi_uncompressed_plane_info {
struct hfi_uncompressed_format_supported {
u32 buffer_type;
u32 format_entries;
- struct hfi_uncompressed_plane_info plane_info[1];
+ struct hfi_uncompressed_plane_info plane_info;
};
struct hfi_uncompressed_plane_actual {
diff --git a/drivers/media/platform/qcom/venus/hfi_parser.c b/drivers/media/platform/qcom/venus/hfi_parser.c
index c43839539d4d..3df241dc3a11 100644
--- a/drivers/media/platform/qcom/venus/hfi_parser.c
+++ b/drivers/media/platform/qcom/venus/hfi_parser.c
@@ -157,7 +157,7 @@ static void
parse_raw_formats(struct venus_core *core, u32 codecs, u32 domain, void *data)
{
struct hfi_uncompressed_format_supported *fmt = data;
- struct hfi_uncompressed_plane_info *pinfo = fmt->plane_info;
+ struct hfi_uncompressed_plane_info *pinfo = &fmt->plane_info;
struct hfi_uncompressed_plane_constraints *constr;
struct raw_formats rawfmts[MAX_FMT_ENTRIES] = {};
u32 entries = fmt->format_entries;
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 07/11] media: venus: Refactor hfi_session_empty_buffer_uncompressed_plane0_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (5 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 06/11] media: venus: Refactor struct hfi_uncompressed_format_supported Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 08/11] media: venus: Refactor hfi_session_empty_buffer_compressed_pkt Ricardo Ribalda
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
The single element array data[1] is never used. Replace it whit a
padding field of the same size.
This fixes the following cocci error:
drivers/media/platform/qcom/venus/hfi_cmds.h:163: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 <ribalda@chromium.org>
---
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 f5708fdfb197..8768ee052adc 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -160,7 +160,7 @@ struct hfi_session_empty_buffer_uncompressed_plane0_pkt {
u32 input_tag;
u32 packet_buffer;
u32 extradata_buffer;
- u32 data[1];
+ u32 data;
};
struct hfi_session_fill_buffer_pkt {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 08/11] media: venus: Refactor hfi_session_empty_buffer_compressed_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (6 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 07/11] media: venus: Refactor hfi_session_empty_buffer_uncompressed_plane0_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 09/11] media: venus: Refactor hfi_sys_get_property_pkt Ricardo Ribalda
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
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 <ribalda@chromium.org>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
---
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 8768ee052adc..2c56ae303989 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -143,7 +143,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 {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 09/11] media: venus: Refactor hfi_sys_get_property_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (7 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 08/11] media: venus: Refactor hfi_session_empty_buffer_compressed_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 10/11] media: venus: Refactor hfi_session_fill_buffer_pkt Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 11/11] media: venus: Refactor hfi_buffer_alloc_mode_supported Ricardo Ribalda
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
Replace a single length element array with an element.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_cmds.h:77: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 <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_cmds.c | 2 +-
drivers/media/platform/qcom/venus/hfi_cmds.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.c b/drivers/media/platform/qcom/venus/hfi_cmds.c
index 75f4a3d3e748..0a4de8ca1df5 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.c
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.c
@@ -156,7 +156,7 @@ void pkt_sys_image_version(struct hfi_sys_get_property_pkt *pkt)
pkt->hdr.size = sizeof(*pkt);
pkt->hdr.pkt_type = HFI_CMD_SYS_GET_PROPERTY;
pkt->num_properties = 1;
- pkt->data[0] = HFI_PROPERTY_SYS_IMAGE_VERSION;
+ pkt->data = HFI_PROPERTY_SYS_IMAGE_VERSION;
}
int pkt_session_init(struct hfi_session_init_pkt *pkt, void *cookie,
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.h b/drivers/media/platform/qcom/venus/hfi_cmds.h
index 2c56ae303989..f91bc9087643 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -74,7 +74,7 @@ struct hfi_sys_set_property_pkt {
struct hfi_sys_get_property_pkt {
struct hfi_pkt_hdr hdr;
u32 num_properties;
- u32 data[1];
+ u32 data;
};
struct hfi_sys_ping_pkt {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 10/11] media: venus: Refactor hfi_session_fill_buffer_pkt
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (8 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 09/11] media: venus: Refactor hfi_sys_get_property_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
2024-06-06 13:16 ` [PATCH v4 11/11] media: venus: Refactor hfi_buffer_alloc_mode_supported Ricardo Ribalda
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
The single data array data[1] is only used to save the extradata_size.
Replace it with a single element field.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_cmds.h:175:5-9: WARNING use flexible-array member instead (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_cmds.c | 2 +-
drivers/media/platform/qcom/venus/hfi_cmds.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.c b/drivers/media/platform/qcom/venus/hfi_cmds.c
index 0a4de8ca1df5..3ae063094e3e 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.c
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.c
@@ -331,7 +331,7 @@ int pkt_session_ftb(struct hfi_session_fill_buffer_pkt *pkt, void *cookie,
pkt->alloc_len = out_frame->alloc_len;
pkt->filled_len = out_frame->filled_len;
pkt->offset = out_frame->offset;
- pkt->data[0] = out_frame->extradata_size;
+ pkt->data = out_frame->extradata_size;
return 0;
}
diff --git a/drivers/media/platform/qcom/venus/hfi_cmds.h b/drivers/media/platform/qcom/venus/hfi_cmds.h
index f91bc9087643..daba45720ddc 100644
--- a/drivers/media/platform/qcom/venus/hfi_cmds.h
+++ b/drivers/media/platform/qcom/venus/hfi_cmds.h
@@ -172,7 +172,7 @@ struct hfi_session_fill_buffer_pkt {
u32 output_tag;
u32 packet_buffer;
u32 extradata_buffer;
- u32 data[1];
+ u32 data;
};
struct hfi_session_flush_pkt {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v4 11/11] media: venus: Refactor hfi_buffer_alloc_mode_supported
2024-06-06 13:16 [PATCH v4 00/11] media: Fix the last set of coccinelle warnings Ricardo Ribalda
` (9 preceding siblings ...)
2024-06-06 13:16 ` [PATCH v4 10/11] media: venus: Refactor hfi_session_fill_buffer_pkt Ricardo Ribalda
@ 2024-06-06 13:16 ` Ricardo Ribalda
10 siblings, 0 replies; 12+ messages in thread
From: Ricardo Ribalda @ 2024-06-06 13:16 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stanimir Varbanov, Vikash Garodia,
Bryan O'Donoghue
Cc: Hans Verkuil, linux-media, linux-kernel, linux-arm-msm,
Ricardo Ribalda
Replace the old style single element array at the end of the struct with
a flex array.
The code does not allocate this structure, so the size change should not
be a problem.
This fixes the following cocci warning:
drivers/media/platform/qcom/venus/hfi_helper.h:1233: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 <ribalda@chromium.org>
---
drivers/media/platform/qcom/venus/hfi_helper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/platform/qcom/venus/hfi_helper.h b/drivers/media/platform/qcom/venus/hfi_helper.h
index dee439ea4d2e..9545c964a428 100644
--- a/drivers/media/platform/qcom/venus/hfi_helper.h
+++ b/drivers/media/platform/qcom/venus/hfi_helper.h
@@ -1230,7 +1230,7 @@ struct hfi_interlace_format_supported {
struct hfi_buffer_alloc_mode_supported {
u32 buffer_type;
u32 num_entries;
- u32 data[1];
+ u32 data[];
};
struct hfi_metadata_pass_through {
--
2.45.2.505.gda0bf45e8d-goog
^ permalink raw reply related [flat|nested] 12+ messages in thread