]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: mxsfb: add back imx6ul/imx6ull support
authorSébastien Szymanski <sebastien.szymanski@armadeus.com>
Tue, 27 Feb 2024 15:40:02 +0000 (16:40 +0100)
committerFabio Estevam <festevam@gmail.com>
Mon, 4 Mar 2024 11:18:48 +0000 (08:18 -0300)
Because of commit bf947d2a4b15 ("imx6ul: synchronise device tree with
linux"), the compatible property of lcdif in imx6ul.dtsi went from

compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif";

to

compatible = "fsl,imx6ul-lcdif", "fsl,imx6sx-lcdif";

without updating the mxsfb driver to match that change.

Add "fsl,imx6sx-lcdif" as a compatible id to fix that.

Fixes: bf947d2a4b15 ("imx6ul: synchronise device tree with linux")
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
drivers/video/mxsfb.c

index 10433949bb80b180c033d580e3f2aa3b57cf1b94..515363f6a49bc808b810a2b6bc6c52abc9886881 100644 (file)
@@ -387,6 +387,7 @@ static int mxs_video_remove(struct udevice *dev)
 static const struct udevice_id mxs_video_ids[] = {
        { .compatible = "fsl,imx23-lcdif" },
        { .compatible = "fsl,imx28-lcdif" },
+       { .compatible = "fsl,imx6sx-lcdif" },
        { .compatible = "fsl,imx7ulp-lcdif" },
        { .compatible = "fsl,imxrt-lcdif" },
        { /* sentinel */ }