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] > +static const struct mtk_aie_variant aie_31_drvdata = { > + .hw_version = 31, > + .fld_enable = 1, > + .y2r_cfg_size = 34, > + .rs_cfg_size = 30, > + .fd_cfg_size = 56, > +}; > + This is the first patch to add AIE driver. So it's not necessary to create SoC data. So drop hw_version and fld_enable. Define symbol for others: #define Y2R_CFG_SIZE 34 #define RS_CFG_SIZE 30 #define FD_CFG_SIZE 56 Regards, CK