On Tue, Jun 30, 2026 at 04:55:48PM +0100, Richard Fitzgerald wrote: > +static const struct i2c_device_id cs2600_id[] = { > + { "cs2600", }, > + {} > +}; Please make this: static const struct i2c_device_id cs2600_id[] = { { .name = "cs2600" }, { } }; to match the common style. Best regards Uwe