On Mon, Aug 21, 2023 at 04:08:15PM +0300, Andy Shevchenko wrote: > 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). Just use bool. Guenter > > > }; > > ... > > > + .enable_pd30_extended_message = 1, > > Maybe even bool? > > -- > With Best Regards, > Andy Shevchenko > >