Hello,

On Tue, Jul 14, 2026 at 12:11:44PM +0200, Leander Kieweg wrote:
> +#include <linux/mod_devicetable.h>   /* Device Tree parsing */

Don't include this header, I plan to get rid of it soon. of_device_id is
provided by <linux/of.h>, so you can just drop this #include.

> +/* Device Tree match table. */
> +static const struct of_device_id glanda_of_match[] = {
> +     {.compatible = "glanda,gpu-1.0", },

Make this:

        { .compatible = "glanda,gpu-1.0" },

please. (That is, a space after the opening { and no comma before the closing 
}).

Thanks
Uwe

Attachment: signature.asc
Description: PGP signature

Reply via email to