mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
video: mxsfb: add back imx6ul/imx6ull support
Because of commitbf947d2a4b
("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:bf947d2a4b
("imx6ul: synchronise device tree with linux") Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
This commit is contained in:
parent
64ca8db96e
commit
9b9f022e73
1 changed files with 1 additions and 0 deletions
|
@ -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 */ }
|
||||
|
|
Loading…
Reference in a new issue