Hello, On Sun, Aug 02, 2026 at 02:42:41PM +0200, David Heidelberg wrote: > +#include > +#include Please don't include , that is going away soon. Also already provides i2c_device_id and of_device_id (ie. the two structures that used to be defined in that you're using), so just drop the #include for . > [...] > +static const struct i2c_device_id tfa98xx_i2c_id[] = { > + { "tfa9894", (kernel_ulong_t)&tfa9894_chip }, Please make this { .name = "tfa9894", .driver_data = (kernel_ulong_t)&tfa9894_chip }, Best regards Uwe