I've two patches for branch lf_v2022.04 of u-boot and I found no other place to submit them. Please let me know if I should submit them somewhere else, or if they are wrong.
Unfortunately, the second patch isn't accepted as attachment. So here it is inline:
From: =?UTF-8?q?J=C3=B6rg=20Sommer?= <joerg.sommer@navimatix.de>
Date: Mon, 2 Oct 2023 16:05:28 +0200
Subject: [PATCH 2/2] imx8m_hdmi: shrink white space to help dtoc
When enabling `CONFIG_SPL_OF_PLATDATA` the build fails with:
ValueError: drivers/video/nxp/imx/hdmi/imx8m_hdmi.c: Unknown compatible var 'imx8m_hdmi_ids' (found: imx8m_hdmi_ids)
---
drivers/video/nxp/imx/hdmi/imx8m_hdmi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/nxp/imx/hdmi/imx8m_hdmi.c b/drivers/video/nxp/imx/hdmi/imx8m_hdmi.c
index fb069d2ed57..f1e38082515 100644
--- a/drivers/video/nxp/imx/hdmi/imx8m_hdmi.c
+++ b/drivers/video/nxp/imx/hdmi/imx8m_hdmi.c
@@ -293,7 +293,7 @@ struct dm_display_ops imx8m_hdmi_ops = {
.enable = imx8m_hdmi_enable,
};
-static const struct udevice_id imx8m_hdmi_ids[] = {
+static const struct udevice_id imx8m_hdmi_ids[] = {
{ .compatible = "fsl,imx8mq-hdmi" },
{ }
};