Hello, On Mon, Jun 29, 2026 at 10:23:42AM -0700, Selvamani Rajagopal via B4 Relay wrote: > +static const struct spi_device_id s2500_ids[] = { > + { "s2500" }, > + {} > +}; > + > +MODULE_DEVICE_TABLE(spi, s2500_ids); For consistency, please make this: static const struct spi_device_id s2500_ids[] = { { .name = "s2500" }, { } }; MODULE_DEVICE_TABLE(spi, s2500_ids); (i.e. use a named initializer, a space between { and } and no empty line before MODULE_DEVICE_TABLE()). Also the driver should probably have a MODULE_DEVICE_TABLE(of, s2500_of_match); Best regards Uwe