Re: [PATCH v3 3/4] media: mediatek: add MT8188 AIE driver
From: CK Hu (胡俊光)
Date: Thu Dec 26 2024 - 02:39:12 EST
On Wed, 2024-12-25 at 17:00 +0800, bo.kong wrote:
> From: Bo Kong <Bo.Kong@xxxxxxxxxxxx>
>
> Add a V4L2 sub-device driver for MT8188 AIE.
>
> Signed-off-by: Bo Kong <Bo.Kong@xxxxxxxxxxxx>
> ---
[snip]
> +struct mtk_aie_ctx {
> + struct mtk_aie_dev *fd_dev;
> + struct device *dev;
> + struct v4l2_fh fh;
> + struct v4l2_ctrl_handler hdl;
> + struct v4l2_pix_format_mplane src_fmt;
> + struct v4l2_meta_format dst_fmt;
> + struct v4l2_ctrl_aie_init user_init;
> + struct v4l2_ctrl_aie_param user_param;
struct v4l2_ctrl_aie_param is defined in future patch.
When apply this patch, it would build fail.
So reorder patch sequence to let struct v4l2_ctrl_aie_param defined first.
Regards,
CK
> +};
> +