mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 09:04:39 +02:00
media: venus: Refactor hfi_sys_get_property_pkt
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> Acked-by: Vikash Garodia <quic_vgarodia@quicinc.com> Signed-off-by: Stanimir Varbanov <stanimir.k.varbanov@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
fd69488275
commit
d604a7bfd0
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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_set_buffers_pkt {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user