On Tue, Jun 23, 2026 at 05:01:13PM +0300, Md Shofiqul Islam wrote: > +static const struct i2c_device_id max86150_id[] = { > + { "max86150" }, > + { } > +}; Please use a named initializer here, i.e. static const struct i2c_device_id max86150_id[] = { { .name = "max86150" }, { } }; See https://lore.kernel.org/lkml/20260515103150.164887-2-u.kleine-koenig@baylibre.com/ for the rationale. Best regards Uwe