On Sun, Aug 20, 2023 at 07:44:02PM +0100, Biju Das wrote: > The RT1715 has PD30 extended message compared to RT1711H. Add a feature bit > enable_pd30_extended_message to struct rt1711h_chip_info to enable this > feature only for RT1715. ... > struct rt1711h_chip_info { > u16 did; > u32 rxdz_sel; > + unsigned enable_pd30_extended_message:1; Besides pahole results, the unsigned is deprecated to use, spell it as unsigned int or u32 or... (find the best match). > }; ... > + .enable_pd30_extended_message = 1, Maybe even bool? -- With Best Regards, Andy Shevchenko