Re: [PATCH v2 0/2] drm/exynos: DRM encoder improvements for Exynos devices
Inki Dae <[email protected]> Sun, 2 Aug 2026 14:47:05 +0900
| Newsgroups | org.kernel.vger.linux-samsung-soc,org.freedesktop.lists.dri-devel,org.infradead.lists.linux-arm-kernel,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <CAAQKjZM5cY8V_YaZzgF734Brabz=zwRkp2k-+b9CbqS2_Xvi2A@mail.gmail.com> |
Hi Diogo,
Thanks for the patch. The conversion itself looks correct.
Two small things to fix:
1. exynos_hdmi.c: double blank line
> +static const struct drm_encoder_funcs exynos_hdmi_encoder_funcs =3D {
> + .destroy =3D drm_encoder_cleanup,
> +};
> +
> +
> static const struct drm_encoder_helper_funcs exynos_hdmi_encoder_helper_=
funcs =3D {
Please drop one of the blank lines. The other four files are fine,
only exynos_hdmi.c has this.
2. exynos_drm_dsi.c: header include order
> --- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
> @@ -13,7 +13,7 @@
> #include <drm/bridge/samsung-dsim.h>
> #include <drm/drm_probe_helper.h>
> -#include <drm/drm_simple_kms_helper.h>
> +#include <drm/drm_encoder.h>
Here the new include was put in place of the removed one, which breaks
the alphabetical ordering. In the other four files you added
<drm/drm_encoder.h> at the correct sorted position, so please do the
same here:
#include <drm/bridge/samsung-dsim.h>
#include <drm/drm_encoder.h>
#include <drm/drm_probe_helper.h>
Both are trivial, so no need to resend - I will fix them up myself
while applying the patch.
Thanks,
Inki Dae
2026=EB=85=84 7=EC=9B=94 5=EC=9D=BC (=EC=9D=BC) =EC=98=A4=ED=9B=84 4:54, Di=
ogo Silva <[email protected]>=EB=8B=98=EC=9D=B4 =EC=9E=91=EC=84=B1:
>
> Hi Inki,
>
> > It looks like you may have forgotten to post the v2 patch. Could you
> > please check?
>
> I think they are here:
> https://lore.kernel.org/all/20260623-exynos-drm-simple-v2-1-a8d59678b7d2@=
gmail.com/
> https://lore.kernel.org/all/20260623-exynos-drm-simple-v2-2-a8d59678b7d2@=
gmail.com/
>
> If I did something wrong tell me and I will re-send them.
>
> Thanks,
> Diogo