All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
	David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
	dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org, kernel@pengutronix.de
Subject: Re: [PATCH 37/53] drm/rcar-du: Convert to platform remove callback returning void
Date: Mon, 8 May 2023 05:42:37 +0300	[thread overview]
Message-ID: <20230508024237.GH23514@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20230507162616.1368908-38-u.kleine-koenig@pengutronix.de>

Hi Uwe,

Thank you for the patch.

On Sun, May 07, 2023 at 06:26:00PM +0200, Uwe Kleine-König wrote:
> The .remove() callback for a platform driver returns an int which makes
> many driver authors wrongly assume it's possible to do error handling by
> returning an error code. However the value returned is (mostly) ignored
> and this typically results in resource leaks. To improve here there is a
> quest to make the remove callback return void. In the first step of this
> quest all drivers are converted to .remove_new() which already returns
> void.
> 
> Trivially convert the rcar-du drm driver from always returning zero in
> the remove callback to the void returning variant.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/gpu/drm/rcar-du/rcar_cmm.c       | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c    | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c   | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_lvds.c      | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c  | 6 ++----
>  drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c | 6 ++----
>  6 files changed, 12 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/gpu/drm/rcar-du/rcar_cmm.c b/drivers/gpu/drm/rcar-du/rcar_cmm.c
> index e2a67dda4658..26a2f5ad8ee5 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_cmm.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_cmm.c
> @@ -187,11 +187,9 @@ static int rcar_cmm_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_cmm_remove(struct platform_device *pdev)
> +static void rcar_cmm_remove(struct platform_device *pdev)
>  {
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rcar_cmm_of_table[] = {
> @@ -203,7 +201,7 @@ MODULE_DEVICE_TABLE(of, rcar_cmm_of_table);
>  
>  static struct platform_driver rcar_cmm_platform_driver = {
>  	.probe		= rcar_cmm_probe,
> -	.remove		= rcar_cmm_remove,
> +	.remove_new	= rcar_cmm_remove,
>  	.driver		= {
>  		.name	= "rcar-cmm",
>  		.of_match_table = rcar_cmm_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> index b9a94c5260e9..4a6bf50b5c49 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> @@ -685,7 +685,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(rcar_du_pm_ops,
>   * Platform driver
>   */
>  
> -static int rcar_du_remove(struct platform_device *pdev)
> +static void rcar_du_remove(struct platform_device *pdev)
>  {
>  	struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
>  	struct drm_device *ddev = &rcdu->ddev;
> @@ -694,8 +694,6 @@ static int rcar_du_remove(struct platform_device *pdev)
>  	drm_atomic_helper_shutdown(ddev);
>  
>  	drm_kms_helper_poll_fini(ddev);
> -
> -	return 0;
>  }
>  
>  static void rcar_du_shutdown(struct platform_device *pdev)
> @@ -776,7 +774,7 @@ static int rcar_du_probe(struct platform_device *pdev)
>  
>  static struct platform_driver rcar_du_platform_driver = {
>  	.probe		= rcar_du_probe,
> -	.remove		= rcar_du_remove,
> +	.remove_new	= rcar_du_remove,
>  	.shutdown	= rcar_du_shutdown,
>  	.driver		= {
>  		.name	= "rcar-du",
> diff --git a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> index 18ed14911b98..119d69d20b23 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> @@ -93,13 +93,11 @@ static int rcar_dw_hdmi_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_dw_hdmi_remove(struct platform_device *pdev)
> +static void rcar_dw_hdmi_remove(struct platform_device *pdev)
>  {
>  	struct dw_hdmi *hdmi = platform_get_drvdata(pdev);
>  
>  	dw_hdmi_remove(hdmi);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rcar_dw_hdmi_of_table[] = {
> @@ -110,7 +108,7 @@ MODULE_DEVICE_TABLE(of, rcar_dw_hdmi_of_table);
>  
>  static struct platform_driver rcar_dw_hdmi_platform_driver = {
>  	.probe		= rcar_dw_hdmi_probe,
> -	.remove		= rcar_dw_hdmi_remove,
> +	.remove_new	= rcar_dw_hdmi_remove,
>  	.driver		= {
>  		.name	= "rcar-dw-hdmi",
>  		.of_match_table = rcar_dw_hdmi_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> index 260ea5d8624e..86d2ac204568 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> @@ -890,15 +890,13 @@ static int rcar_lvds_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_lvds_remove(struct platform_device *pdev)
> +static void rcar_lvds_remove(struct platform_device *pdev)
>  {
>  	struct rcar_lvds *lvds = platform_get_drvdata(pdev);
>  
>  	drm_bridge_remove(&lvds->bridge);
>  
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct rcar_lvds_device_info rcar_lvds_gen2_info = {
> @@ -994,7 +992,7 @@ static const struct dev_pm_ops rcar_lvds_pm_ops = {
>  
>  static struct platform_driver rcar_lvds_platform_driver = {
>  	.probe		= rcar_lvds_probe,
> -	.remove		= rcar_lvds_remove,
> +	.remove_new	= rcar_lvds_remove,
>  	.driver		= {
>  		.name	= "rcar-lvds",
>  		.pm	= &rcar_lvds_pm_ops,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> index e10e4d4b89a2..305123a671c6 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> @@ -1044,13 +1044,11 @@ static int rcar_mipi_dsi_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_mipi_dsi_remove(struct platform_device *pdev)
> +static void rcar_mipi_dsi_remove(struct platform_device *pdev)
>  {
>  	struct rcar_mipi_dsi *dsi = platform_get_drvdata(pdev);
>  
>  	mipi_dsi_host_unregister(&dsi->host);
> -
> -	return 0;
>  }
>  
>  static const struct rcar_mipi_dsi_device_info v3u_data = {
> @@ -1093,7 +1091,7 @@ MODULE_DEVICE_TABLE(of, rcar_mipi_dsi_of_table);
>  
>  static struct platform_driver rcar_mipi_dsi_platform_driver = {
>  	.probe          = rcar_mipi_dsi_probe,
> -	.remove         = rcar_mipi_dsi_remove,
> +	.remove_new     = rcar_mipi_dsi_remove,
>  	.driver         = {
>  		.name   = "rcar-mipi-dsi",
>  		.of_match_table = rcar_mipi_dsi_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> index aa95b85a2964..a97fc4c5d1c8 100644
> --- a/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> +++ b/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> @@ -782,14 +782,12 @@ static int rzg2l_mipi_dsi_probe(struct platform_device *pdev)
>  	return ret;
>  }
>  
> -static int rzg2l_mipi_dsi_remove(struct platform_device *pdev)
> +static void rzg2l_mipi_dsi_remove(struct platform_device *pdev)
>  {
>  	struct rzg2l_mipi_dsi *dsi = platform_get_drvdata(pdev);
>  
>  	mipi_dsi_host_unregister(&dsi->host);
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rzg2l_mipi_dsi_of_table[] = {
> @@ -801,7 +799,7 @@ MODULE_DEVICE_TABLE(of, rzg2l_mipi_dsi_of_table);
>  
>  static struct platform_driver rzg2l_mipi_dsi_platform_driver = {
>  	.probe	= rzg2l_mipi_dsi_probe,
> -	.remove	= rzg2l_mipi_dsi_remove,
> +	.remove_new = rzg2l_mipi_dsi_remove,
>  	.driver	= {
>  		.name = "rzg2l-mipi-dsi",
>  		.pm = &rzg2l_mipi_pm_ops,
> -- 
> 2.39.2
> 

-- 
Regards,

Laurent Pinchart

WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org,
	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
	kernel@pengutronix.de
Subject: Re: [PATCH 37/53] drm/rcar-du: Convert to platform remove callback returning void
Date: Mon, 8 May 2023 05:42:37 +0300	[thread overview]
Message-ID: <20230508024237.GH23514@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20230507162616.1368908-38-u.kleine-koenig@pengutronix.de>

Hi Uwe,

Thank you for the patch.

On Sun, May 07, 2023 at 06:26:00PM +0200, Uwe Kleine-König wrote:
> The .remove() callback for a platform driver returns an int which makes
> many driver authors wrongly assume it's possible to do error handling by
> returning an error code. However the value returned is (mostly) ignored
> and this typically results in resource leaks. To improve here there is a
> quest to make the remove callback return void. In the first step of this
> quest all drivers are converted to .remove_new() which already returns
> void.
> 
> Trivially convert the rcar-du drm driver from always returning zero in
> the remove callback to the void returning variant.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/gpu/drm/rcar-du/rcar_cmm.c       | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c    | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c   | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_lvds.c      | 6 ++----
>  drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c  | 6 ++----
>  drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c | 6 ++----
>  6 files changed, 12 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/gpu/drm/rcar-du/rcar_cmm.c b/drivers/gpu/drm/rcar-du/rcar_cmm.c
> index e2a67dda4658..26a2f5ad8ee5 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_cmm.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_cmm.c
> @@ -187,11 +187,9 @@ static int rcar_cmm_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_cmm_remove(struct platform_device *pdev)
> +static void rcar_cmm_remove(struct platform_device *pdev)
>  {
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rcar_cmm_of_table[] = {
> @@ -203,7 +201,7 @@ MODULE_DEVICE_TABLE(of, rcar_cmm_of_table);
>  
>  static struct platform_driver rcar_cmm_platform_driver = {
>  	.probe		= rcar_cmm_probe,
> -	.remove		= rcar_cmm_remove,
> +	.remove_new	= rcar_cmm_remove,
>  	.driver		= {
>  		.name	= "rcar-cmm",
>  		.of_match_table = rcar_cmm_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> index b9a94c5260e9..4a6bf50b5c49 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c
> @@ -685,7 +685,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(rcar_du_pm_ops,
>   * Platform driver
>   */
>  
> -static int rcar_du_remove(struct platform_device *pdev)
> +static void rcar_du_remove(struct platform_device *pdev)
>  {
>  	struct rcar_du_device *rcdu = platform_get_drvdata(pdev);
>  	struct drm_device *ddev = &rcdu->ddev;
> @@ -694,8 +694,6 @@ static int rcar_du_remove(struct platform_device *pdev)
>  	drm_atomic_helper_shutdown(ddev);
>  
>  	drm_kms_helper_poll_fini(ddev);
> -
> -	return 0;
>  }
>  
>  static void rcar_du_shutdown(struct platform_device *pdev)
> @@ -776,7 +774,7 @@ static int rcar_du_probe(struct platform_device *pdev)
>  
>  static struct platform_driver rcar_du_platform_driver = {
>  	.probe		= rcar_du_probe,
> -	.remove		= rcar_du_remove,
> +	.remove_new	= rcar_du_remove,
>  	.shutdown	= rcar_du_shutdown,
>  	.driver		= {
>  		.name	= "rcar-du",
> diff --git a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> index 18ed14911b98..119d69d20b23 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c
> @@ -93,13 +93,11 @@ static int rcar_dw_hdmi_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_dw_hdmi_remove(struct platform_device *pdev)
> +static void rcar_dw_hdmi_remove(struct platform_device *pdev)
>  {
>  	struct dw_hdmi *hdmi = platform_get_drvdata(pdev);
>  
>  	dw_hdmi_remove(hdmi);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rcar_dw_hdmi_of_table[] = {
> @@ -110,7 +108,7 @@ MODULE_DEVICE_TABLE(of, rcar_dw_hdmi_of_table);
>  
>  static struct platform_driver rcar_dw_hdmi_platform_driver = {
>  	.probe		= rcar_dw_hdmi_probe,
> -	.remove		= rcar_dw_hdmi_remove,
> +	.remove_new	= rcar_dw_hdmi_remove,
>  	.driver		= {
>  		.name	= "rcar-dw-hdmi",
>  		.of_match_table = rcar_dw_hdmi_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> index 260ea5d8624e..86d2ac204568 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> @@ -890,15 +890,13 @@ static int rcar_lvds_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_lvds_remove(struct platform_device *pdev)
> +static void rcar_lvds_remove(struct platform_device *pdev)
>  {
>  	struct rcar_lvds *lvds = platform_get_drvdata(pdev);
>  
>  	drm_bridge_remove(&lvds->bridge);
>  
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct rcar_lvds_device_info rcar_lvds_gen2_info = {
> @@ -994,7 +992,7 @@ static const struct dev_pm_ops rcar_lvds_pm_ops = {
>  
>  static struct platform_driver rcar_lvds_platform_driver = {
>  	.probe		= rcar_lvds_probe,
> -	.remove		= rcar_lvds_remove,
> +	.remove_new	= rcar_lvds_remove,
>  	.driver		= {
>  		.name	= "rcar-lvds",
>  		.pm	= &rcar_lvds_pm_ops,
> diff --git a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> index e10e4d4b89a2..305123a671c6 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
> @@ -1044,13 +1044,11 @@ static int rcar_mipi_dsi_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int rcar_mipi_dsi_remove(struct platform_device *pdev)
> +static void rcar_mipi_dsi_remove(struct platform_device *pdev)
>  {
>  	struct rcar_mipi_dsi *dsi = platform_get_drvdata(pdev);
>  
>  	mipi_dsi_host_unregister(&dsi->host);
> -
> -	return 0;
>  }
>  
>  static const struct rcar_mipi_dsi_device_info v3u_data = {
> @@ -1093,7 +1091,7 @@ MODULE_DEVICE_TABLE(of, rcar_mipi_dsi_of_table);
>  
>  static struct platform_driver rcar_mipi_dsi_platform_driver = {
>  	.probe          = rcar_mipi_dsi_probe,
> -	.remove         = rcar_mipi_dsi_remove,
> +	.remove_new     = rcar_mipi_dsi_remove,
>  	.driver         = {
>  		.name   = "rcar-mipi-dsi",
>  		.of_match_table = rcar_mipi_dsi_of_table,
> diff --git a/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> index aa95b85a2964..a97fc4c5d1c8 100644
> --- a/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> +++ b/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c
> @@ -782,14 +782,12 @@ static int rzg2l_mipi_dsi_probe(struct platform_device *pdev)
>  	return ret;
>  }
>  
> -static int rzg2l_mipi_dsi_remove(struct platform_device *pdev)
> +static void rzg2l_mipi_dsi_remove(struct platform_device *pdev)
>  {
>  	struct rzg2l_mipi_dsi *dsi = platform_get_drvdata(pdev);
>  
>  	mipi_dsi_host_unregister(&dsi->host);
>  	pm_runtime_disable(&pdev->dev);
> -
> -	return 0;
>  }
>  
>  static const struct of_device_id rzg2l_mipi_dsi_of_table[] = {
> @@ -801,7 +799,7 @@ MODULE_DEVICE_TABLE(of, rzg2l_mipi_dsi_of_table);
>  
>  static struct platform_driver rzg2l_mipi_dsi_platform_driver = {
>  	.probe	= rzg2l_mipi_dsi_probe,
> -	.remove	= rzg2l_mipi_dsi_remove,
> +	.remove_new = rzg2l_mipi_dsi_remove,
>  	.driver	= {
>  		.name = "rzg2l-mipi-dsi",
>  		.pm = &rzg2l_mipi_pm_ops,
> -- 
> 2.39.2
> 

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2023-05-08  2:42 UTC|newest]

Thread overview: 261+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-07 16:25 [PATCH 00/53] drm: Convert to platform remove callback returning void Uwe Kleine-König
2023-05-07 16:25 ` Uwe Kleine-König
2023-05-07 16:25 ` [Nouveau] " Uwe Kleine-König
2023-05-07 16:25 ` Uwe Kleine-König
2023-05-07 16:25 ` Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 01/53] drm/komeda: " Uwe Kleine-König
2023-05-10 21:50   ` Liviu Dudau
2023-05-07 16:25 ` [PATCH 02/53] drm/arm/hdlcd: " Uwe Kleine-König
2023-05-10 21:51   ` Liviu Dudau
2023-05-07 16:25 ` [PATCH 03/53] drm/arm/malidp: " Uwe Kleine-König
2023-05-10 21:52   ` Liviu Dudau
2023-05-07 16:25 ` [PATCH 04/53] drm/armada: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 05/53] drm/aspeed: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 06/53] drm/atmel-hlcdc: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:44   ` Sam Ravnborg
2023-05-07 16:44     ` Sam Ravnborg
2023-05-08  7:04   ` Claudiu.Beznea
2023-05-07 16:25 ` [PATCH 07/53] drm/bridge: cdns-dsi: " Uwe Kleine-König
2023-05-08  2:37   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 08/53] drm/bridge: display-connector: " Uwe Kleine-König
2023-05-08  2:46   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 09/53] drm/bridge: fsl-ldb: " Uwe Kleine-König
2023-05-08  2:45   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 10/53] drm/imx/imx8*: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-08  2:43   ` Laurent Pinchart
2023-05-08  2:43     ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 11/53] drm/bridge: lvds-codec: " Uwe Kleine-König
2023-05-08  2:44   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 12/53] drm/bridge: nwl-dsi: " Uwe Kleine-König
2023-05-08  2:36   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 13/53] drm/bridge: simple-bridge: " Uwe Kleine-König
2023-05-08  2:45   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 14/53] drm/bridge: synopsys: " Uwe Kleine-König
2023-05-08  2:37   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 15/53] drm/bridge: thc63lvd1024: " Uwe Kleine-König
2023-05-08  2:44   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 16/53] drm/bridge: tfp410: " Uwe Kleine-König
2023-05-08  2:44   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 17/53] drm/etnaviv: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 18/53] drm/exynos: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-15  7:32   ` Inki Dae
2023-05-15  7:32     ` Inki Dae
2023-05-15  9:16     ` Uwe Kleine-König
2023-05-15  9:16       ` Uwe Kleine-König
2023-05-15  9:16       ` Uwe Kleine-König
2023-05-19  0:11       ` 대인기
2023-05-19  0:11         ` 대인기
2023-05-19  0:11         ` 대인기
2023-05-19  6:38         ` Uwe Kleine-König
2023-05-19  6:38           ` Uwe Kleine-König
2023-05-19  6:38           ` Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 19/53] drm/fsl-dcu: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 20/53] drm/hisilicon: " Uwe Kleine-König
2023-05-08  2:41   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 21/53] drm/imx/dcss: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 22/53] drm/imx/ipuv3: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-08  7:10   ` Philipp Zabel
2023-05-07 16:25 ` [PATCH 23/53] drm/ingenic: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 18:46   ` Paul Cercueil
2023-05-07 18:46     ` Paul Cercueil
2023-05-07 16:25 ` [PATCH 24/53] drm/kmb: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 25/53] drm/lima: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 26/53] drm/logicvc: " Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 27/53] drm/mcde: " Uwe Kleine-König
2023-05-08  6:13   ` Linus Walleij
2023-05-07 16:25 ` [PATCH 28/53] drm/mediatek: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-08  8:25   ` Matthias Brugger
2023-05-08  8:25     ` Matthias Brugger
2023-05-07 16:25 ` [PATCH 29/53] " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-08  8:26   ` Matthias Brugger
2023-05-08  8:26     ` Matthias Brugger
2023-05-07 16:25 ` [PATCH 30/53] drm/meson: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-08 19:39   ` Martin Blumenstingl
2023-05-08 19:39     ` Martin Blumenstingl
2023-05-07 16:25 ` [PATCH 31/53] drm/msm: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-20 23:56   ` Dmitry Baryshkov
2023-05-20 23:56     ` Dmitry Baryshkov
2023-05-07 16:25 ` [PATCH 32/53] drm/mxsfb: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25 ` [Nouveau] [PATCH 33/53] drm/nouveau: " Uwe Kleine-König
2023-05-07 16:25   ` Uwe Kleine-König
2023-05-07 16:25 ` [PATCH 34/53] drm/omap: " Uwe Kleine-König
2023-05-08  2:40   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 35/53] drm/panel: " Uwe Kleine-König
2023-05-08  2:43   ` Laurent Pinchart
2023-05-07 16:25 ` [PATCH 36/53] drm/panfrost: " Uwe Kleine-König
2023-05-10 16:05   ` Steven Price
2023-05-07 16:26 ` [PATCH 37/53] drm/rcar-du: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-08  2:42   ` Laurent Pinchart [this message]
2023-05-08  2:42     ` Laurent Pinchart
2023-05-08 13:14   ` Geert Uytterhoeven
2023-05-08 13:14     ` Geert Uytterhoeven
2023-05-07 16:26 ` [PATCH 38/53] drm/rockchip: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-08  8:24   ` Heiko Stübner
2023-05-08  8:24     ` Heiko Stübner
2023-05-07 16:26 ` [PATCH 39/53] drm/shmobile: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-08  2:40   ` Laurent Pinchart
2023-05-08  2:40     ` Laurent Pinchart
2023-05-08 13:13   ` Geert Uytterhoeven
2023-05-08 13:13     ` Geert Uytterhoeven
2023-05-07 16:26 ` [PATCH 40/53] drm/sprd: " Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 41/53] drm/sti: " Uwe Kleine-König
2023-05-09  7:22   ` Alain Volmat
2023-05-07 16:26 ` [PATCH 42/53] drm/stm: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-15 13:53   ` Raphael Gallais-Pou
2023-05-15 13:53     ` Raphael Gallais-Pou
2023-05-07 16:26 ` [PATCH 43/53] drm/sun4i: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 44/53] drm/tegra: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 45/53] drm/tests: helpers: " Uwe Kleine-König
2023-05-08 22:10   ` Maíra Canal
2023-05-09  5:51     ` Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 46/53] drm/tidss: " Uwe Kleine-König
2023-05-09  8:11   ` Tomi Valkeinen
2023-05-07 16:26 ` [PATCH 47/53] drm/tilcdc: " Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 48/53] drm/tiny: " Uwe Kleine-König
2023-05-08  7:03   ` Thomas Zimmermann
2023-05-08  7:28     ` Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 49/53] " Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 50/53] drm/tve200: " Uwe Kleine-König
2023-05-08  6:14   ` Linus Walleij
2023-05-07 16:26 ` [PATCH 51/53] drm/v3d: " Uwe Kleine-König
2023-05-07 16:26 ` [PATCH 52/53] drm/vc4: " Uwe Kleine-König
2023-05-09 14:32   ` Dave Stevenson
2023-05-07 16:26 ` [PATCH 53/53] drm/xlnx/zynqmp_dpsub: " Uwe Kleine-König
2023-05-07 16:26   ` Uwe Kleine-König
2023-05-08  2:35   ` Laurent Pinchart
2023-05-08  2:35     ` Laurent Pinchart
2023-05-08  7:06 ` [PATCH 00/53] drm: " Thomas Zimmermann
2023-05-08  7:06   ` Thomas Zimmermann
2023-05-08  7:06   ` [Nouveau] " Thomas Zimmermann
2023-05-08  7:06   ` Thomas Zimmermann
2023-05-08  7:06   ` Thomas Zimmermann
2023-05-08  7:50   ` Uwe Kleine-König
2023-05-08  7:50     ` Uwe Kleine-König
2023-05-08  7:50     ` [Nouveau] " Uwe Kleine-König
2023-05-08  7:50     ` Uwe Kleine-König
2023-05-08  7:50     ` Uwe Kleine-König
2023-05-08 14:16 ` [PATCH 47/53] drm/tilcdc: " jyri.sarha
2023-05-15  7:50 ` [PATCH 00/53] drm: " Inki Dae
2023-05-15  7:50   ` Inki Dae
2023-05-15  7:50   ` [Nouveau] " Inki Dae
2023-05-15  7:50   ` Inki Dae
2023-05-15  7:50   ` Inki Dae
2023-05-15  9:20   ` Uwe Kleine-König
2023-05-15  9:20     ` Uwe Kleine-König
2023-05-15  9:20     ` [Nouveau] " Uwe Kleine-König
2023-05-15  9:20     ` Uwe Kleine-König
2023-05-15  9:20     ` Uwe Kleine-König
2023-06-01 15:40 ` Uwe Kleine-König
2023-06-01 15:40   ` Uwe Kleine-König
2023-06-01 15:40   ` [Nouveau] " Uwe Kleine-König
2023-06-01 15:40   ` Uwe Kleine-König
2023-06-08 16:08   ` Doug Anderson
2023-06-08 16:08     ` Doug Anderson
2023-06-08 16:08     ` [Nouveau] " Doug Anderson
2023-06-08 16:08     ` Doug Anderson
2023-06-08 16:26     ` Laurent Pinchart
2023-06-08 16:26       ` Laurent Pinchart
2023-06-08 16:26       ` [Nouveau] " Laurent Pinchart
2023-06-08 16:26       ` Laurent Pinchart
2023-06-08 16:47       ` Doug Anderson
2023-06-08 16:47         ` Doug Anderson
2023-06-08 16:47         ` [Nouveau] " Doug Anderson
2023-06-08 16:47         ` Doug Anderson
2023-06-08 17:19       ` Tomi Valkeinen
2023-06-08 17:19         ` Tomi Valkeinen
2023-06-08 17:19         ` [Nouveau] " Tomi Valkeinen
2023-06-08 17:19         ` Tomi Valkeinen
2023-06-08 17:38         ` Doug Anderson
2023-06-08 17:38           ` Doug Anderson
2023-06-08 17:38           ` [Nouveau] " Doug Anderson
2023-06-08 17:38           ` Doug Anderson
2023-06-17 16:12     ` patches dropped from drm-misc-next [Was: Re: [PATCH 00/53] drm: Convert to platform remove callback returning] void Uwe Kleine-König
2023-06-17 16:12       ` Uwe Kleine-König
2023-06-17 16:12       ` [Nouveau] " Uwe Kleine-König
2023-06-17 16:12       ` Uwe Kleine-König
2023-06-17 16:51       ` Chen-Yu Tsai
2023-06-17 16:51         ` Chen-Yu Tsai
2023-06-17 16:51         ` [Nouveau] " Chen-Yu Tsai
2023-06-17 16:51         ` Chen-Yu Tsai
2023-06-17 17:57       ` Doug Anderson
2023-06-17 17:57         ` Doug Anderson
2023-06-17 17:57         ` [Nouveau] " Doug Anderson
2023-06-17 17:57         ` Doug Anderson
2023-06-18 12:39         ` Uwe Kleine-König
2023-06-18 12:39           ` Uwe Kleine-König
2023-06-18 12:39           ` [Nouveau] " Uwe Kleine-König
2023-06-18 12:39           ` Uwe Kleine-König
2023-06-18 14:02           ` Uwe Kleine-König
2023-06-18 14:02             ` Uwe Kleine-König
2023-06-18 14:02             ` [Nouveau] " Uwe Kleine-König
2023-06-18 14:02             ` Uwe Kleine-König
2023-06-18 14:32           ` Maxime Ripard
2023-06-18 14:32             ` Maxime Ripard
2023-06-18 14:32             ` [Nouveau] " Maxime Ripard
2023-06-18 14:32             ` Maxime Ripard
2023-06-18 16:29             ` Uwe Kleine-König
2023-06-18 16:29               ` Uwe Kleine-König
2023-06-18 16:29               ` [Nouveau] " Uwe Kleine-König
2023-06-18 16:29               ` Uwe Kleine-König
2023-06-19  9:45               ` Maxime Ripard
2023-06-19  9:45                 ` Maxime Ripard
2023-06-19  9:45                 ` [Nouveau] " Maxime Ripard
2023-06-19  9:45                 ` Maxime Ripard
2023-06-19 10:53                 ` Uwe Kleine-König
2023-06-19 10:53                   ` Uwe Kleine-König
2023-06-19 10:53                   ` [Nouveau] " Uwe Kleine-König
2023-06-19 10:53                   ` Uwe Kleine-König
2023-06-19 12:47                   ` Maxime Ripard
2023-06-19 12:47                     ` Maxime Ripard
2023-06-19 12:47                     ` [Nouveau] " Maxime Ripard
2023-06-19 12:47                     ` Maxime Ripard
2023-06-19 13:25                     ` Geert Uytterhoeven
2023-06-19 13:25                       ` Geert Uytterhoeven
2023-06-19 13:25                       ` [Nouveau] " Geert Uytterhoeven
2023-06-19 13:25                       ` Geert Uytterhoeven
2023-06-19 14:02                       ` Maxime Ripard
2023-06-19 14:02                         ` Maxime Ripard
2023-06-19 14:02                         ` [Nouveau] " Maxime Ripard
2023-06-19 14:02                         ` Maxime Ripard
2023-06-19 14:20                         ` Geert Uytterhoeven
2023-06-19 14:20                           ` Geert Uytterhoeven
2023-06-19 14:20                           ` [Nouveau] " Geert Uytterhoeven
2023-06-19 14:20                           ` Geert Uytterhoeven
2023-06-19 13:58                     ` Uwe Kleine-König
2023-06-19 13:58                       ` Uwe Kleine-König
2023-06-19 13:58                       ` [Nouveau] " Uwe Kleine-König
2023-06-19 13:58                       ` Uwe Kleine-König
2023-06-19 14:30                       ` Jani Nikula
2023-06-19 14:52                         ` Geert Uytterhoeven
2023-09-09 14:37 ` [PATCH 00/53] drm: Convert to platform remove callback returning void Javier Martinez Canillas
2023-09-09 14:37   ` Javier Martinez Canillas
2023-09-09 14:37   ` Javier Martinez Canillas
2023-09-09 14:37   ` [Nouveau] " Javier Martinez Canillas
2023-09-09 14:37   ` Javier Martinez Canillas
2023-09-09 14:37   ` Javier Martinez Canillas
2023-09-09 14:37   ` Javier Martinez Canillas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230508024237.GH23514@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kernel@pengutronix.de \
    --cc=kieran.bingham+renesas@ideasonboard.com \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.