Re: [PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-12-16 Thread Philipp Zabel
On Fr, 2022-11-25 at 12:25 +0100, Lucas Stach wrote: > The IPUv3 and DCSS driver are two totally separate DRM drivers. Having > one of them live in the drivers/gpu/drm/imx toplevel directory and the > other one in the dcss/ subdirectory is confusing. Move the IPUv3 driver > into its own subdirector

Re: [PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-12-16 Thread Philipp Zabel
On Fr, 2022-12-16 at 13:03 +0100, Uwe Kleine-König wrote: > On Fri, Nov 25, 2022 at 12:25:19PM +0100, Lucas Stach wrote: > > diff --git a/drivers/gpu/drm/imx/Makefile b/drivers/gpu/drm/imx/Makefile > > index b644deffe948..909622864716 100644 > > --- a/drivers/gpu/drm/imx/Makefile > > +++ b/drivers/

Re: [PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-12-16 Thread Philipp Zabel
On Fr, 2022-11-25 at 12:25 +0100, Lucas Stach wrote: > The IPUv3 and DCSS driver are two totally separate DRM drivers. Having > one of them live in the drivers/gpu/drm/imx toplevel directory and the > other one in the dcss/ subdirectory is confusing. Move the IPUv3 driver > into its own subdirector

Re: [PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-12-16 Thread Lucas Stach
Am Freitag, dem 16.12.2022 um 13:03 +0100 schrieb Uwe Kleine-König: > On Fri, Nov 25, 2022 at 12:25:19PM +0100, Lucas Stach wrote: > > diff --git a/drivers/gpu/drm/imx/Makefile b/drivers/gpu/drm/imx/Makefile > > index b644deffe948..909622864716 100644 > > --- a/drivers/gpu/drm/imx/Makefile > > +++

Re: [PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-12-16 Thread Uwe Kleine-König
On Fri, Nov 25, 2022 at 12:25:19PM +0100, Lucas Stach wrote: > diff --git a/drivers/gpu/drm/imx/Makefile b/drivers/gpu/drm/imx/Makefile > index b644deffe948..909622864716 100644 > --- a/drivers/gpu/drm/imx/Makefile > +++ b/drivers/gpu/drm/imx/Makefile > @@ -1,12 +1,4 @@ > [...] > obj-$(CONFIG_DRM_

[PATCH] drm/imx: move IPUv3 driver into separate subdirectory

2022-11-25 Thread Lucas Stach
The IPUv3 and DCSS driver are two totally separate DRM drivers. Having one of them live in the drivers/gpu/drm/imx toplevel directory and the other one in the dcss/ subdirectory is confusing. Move the IPUv3 driver into its own subdirectory to make the separation more clear. Signed-off-by: Lucas St