aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSébastien Szymanski <sebastien.szymanski@armadeus.com>2024-02-27 16:40:02 +0100
committerFabio Estevam <festevam@gmail.com>2024-03-04 08:18:48 -0300
commit9b9f022e7368cacafa368beaa7fadd931f2cfcdb (patch)
tree5836d6a54a6b9b8449e11eea4619f6747d6f29f1 /drivers
parent64ca8db96e71a8170e5e5921ce2ea063f9e68c96 (diff)
downloadu-boot-9b9f022e7368cacafa368beaa7fadd931f2cfcdb.zip
u-boot-9b9f022e7368cacafa368beaa7fadd931f2cfcdb.tar.gz
u-boot-9b9f022e7368cacafa368beaa7fadd931f2cfcdb.tar.bz2
video: mxsfb: add back imx6ul/imx6ull support
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/mxsfb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c
index 1043394..515363f 100644
--- a/drivers/video/mxsfb.c
+++ b/drivers/video/mxsfb.c
@@ -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 */ }