From: Frank Li (AI-BOT) <frank.li at nxp.com> > +static const struct irqsteer_devtype_data imx_data = { > + .quirks = 0, > +}; AI: Unnecessary to explicitly set `.quirks = 0` in imx_data; struct will be zero-initialized. Remove for brevity. Frank