Hello, On Tue, Aug 11, 2026 at 01:52:34AM -0400, Esteban Urrutia wrote: > diff --git a/drivers/gpu/drm/panel/panel-novatek-nt37703.c > b/drivers/gpu/drm/panel/panel-novatek-nt37703.c > new file mode 100644 > index 000000000000..5858bf12a310 > --- /dev/null > +++ b/drivers/gpu/drm/panel/panel-novatek-nt37703.c > @@ -0,0 +1,467 @@ > [...] > +#include <linux/backlight.h> > +#include <linux/delay.h> > +#include <linux/gpio/consumer.h> > +#include <linux/mod_devicetable.h> > +#include <linux/module.h> > +#include <linux/of.h> > +#include <linux/regulator/consumer.h> > + > +#include <video/mipi_display.h> > + > +#include <drm/display/drm_dsc.h> > +#include <drm/display/drm_dsc_helper.h> > +#include <drm/drm_mipi_dsi.h> > +#include <drm/drm_modes.h> > +#include <drm/drm_panel.h> > +#include <drm/drm_probe_helper.h>
Please rely on <drm/drm_mipi_dsi.h> to provide the definition of
of_device_id and drop explicit inclusion of <linux/mod_devicetable.h> as
this will go away soon.
> [...]
> +static const struct of_device_id nt37703_of_match[] = {
> + {
> + .compatible = "motorola,bronco-tianma-v2-nt37703",
> + .data = &bronco_tianma_v2_desc,
> + },
> + { /* sentinel */ },
No trailing comma after the list terminator please.
> +};
> +MODULE_DEVICE_TABLE(of, nt37703_of_match);
Best regards
Uwe
signature.asc
Description: PGP signature

