* [PATCH] drm/panel: lvds: Remove unused members from main structure
@ 2025-08-29 7:53 Liu Ying
2025-09-01 12:25 ` Neil Armstrong
2025-09-01 13:01 ` Raphael Gallais-Pou
0 siblings, 2 replies; 3+ messages in thread
From: Liu Ying @ 2025-08-29 7:53 UTC (permalink / raw)
To: Laurent Pinchart, Neil Armstrong, Jessica Zhang,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter
Cc: dri-devel, linux-kernel, Liu Ying
Since commit 03fa454bb666 ("drm/panel: lvds: Simplify mode parsing"),
the width and height members of struct panel_lvds are no longer used.
Remove them. No functional change.
Signed-off-by: Liu Ying <victor.liu@nxp.com>
---
drivers/gpu/drm/panel/panel-lvds.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-lvds.c b/drivers/gpu/drm/panel/panel-lvds.c
index 23fd535d8f479045a87b0f51bec17cd7c66b0f75..46b07f38559f35aa3b0a41662cc29480e53e885f 100644
--- a/drivers/gpu/drm/panel/panel-lvds.c
+++ b/drivers/gpu/drm/panel/panel-lvds.c
@@ -28,8 +28,6 @@ struct panel_lvds {
struct device *dev;
const char *label;
- unsigned int width;
- unsigned int height;
struct drm_display_mode dmode;
u32 bus_flags;
unsigned int bus_format;
---
base-commit: 3cace99d63192a7250461b058279a42d91075d0c
change-id: 20250829-panel-lvds-remove-width-height-1d063f0bb178
Best regards,
--
Liu Ying <victor.liu@nxp.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/panel: lvds: Remove unused members from main structure
2025-08-29 7:53 [PATCH] drm/panel: lvds: Remove unused members from main structure Liu Ying
@ 2025-09-01 12:25 ` Neil Armstrong
2025-09-01 13:01 ` Raphael Gallais-Pou
1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2025-09-01 12:25 UTC (permalink / raw)
To: Liu Ying, Laurent Pinchart, Jessica Zhang, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter
Cc: dri-devel, linux-kernel
On 29/08/2025 09:53, Liu Ying wrote:
> Since commit 03fa454bb666 ("drm/panel: lvds: Simplify mode parsing"),
> the width and height members of struct panel_lvds are no longer used.
> Remove them. No functional change.
>
> Signed-off-by: Liu Ying <victor.liu@nxp.com>
> ---
> drivers/gpu/drm/panel/panel-lvds.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/panel/panel-lvds.c b/drivers/gpu/drm/panel/panel-lvds.c
> index 23fd535d8f479045a87b0f51bec17cd7c66b0f75..46b07f38559f35aa3b0a41662cc29480e53e885f 100644
> --- a/drivers/gpu/drm/panel/panel-lvds.c
> +++ b/drivers/gpu/drm/panel/panel-lvds.c
> @@ -28,8 +28,6 @@ struct panel_lvds {
> struct device *dev;
>
> const char *label;
> - unsigned int width;
> - unsigned int height;
> struct drm_display_mode dmode;
> u32 bus_flags;
> unsigned int bus_format;
>
> ---
> base-commit: 3cace99d63192a7250461b058279a42d91075d0c
> change-id: 20250829-panel-lvds-remove-width-height-1d063f0bb178
>
> Best regards,
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/panel: lvds: Remove unused members from main structure
2025-08-29 7:53 [PATCH] drm/panel: lvds: Remove unused members from main structure Liu Ying
2025-09-01 12:25 ` Neil Armstrong
@ 2025-09-01 13:01 ` Raphael Gallais-Pou
1 sibling, 0 replies; 3+ messages in thread
From: Raphael Gallais-Pou @ 2025-09-01 13:01 UTC (permalink / raw)
To: Liu Ying, Laurent Pinchart, Neil Armstrong, Jessica Zhang,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter
Cc: dri-devel, linux-kernel
On 8/29/25 09:53, Liu Ying wrote:
> Since commit 03fa454bb666 ("drm/panel: lvds: Simplify mode parsing"),
> the width and height members of struct panel_lvds are no longer used.
> Remove them. No functional change.
>
> Signed-off-by: Liu Ying <victor.liu@nxp.com>
> ---
Hi,
Reviewed-by: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
Best regards,
Raphaël
> drivers/gpu/drm/panel/panel-lvds.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/panel/panel-lvds.c b/drivers/gpu/drm/panel/panel-lvds.c
> index 23fd535d8f479045a87b0f51bec17cd7c66b0f75..46b07f38559f35aa3b0a41662cc29480e53e885f 100644
> --- a/drivers/gpu/drm/panel/panel-lvds.c
> +++ b/drivers/gpu/drm/panel/panel-lvds.c
> @@ -28,8 +28,6 @@ struct panel_lvds {
> struct device *dev;
>
> const char *label;
> - unsigned int width;
> - unsigned int height;
> struct drm_display_mode dmode;
> u32 bus_flags;
> unsigned int bus_format;
>
> ---
> base-commit: 3cace99d63192a7250461b058279a42d91075d0c
> change-id: 20250829-panel-lvds-remove-width-height-1d063f0bb178
>
> Best regards,
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-09-01 13:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-29 7:53 [PATCH] drm/panel: lvds: Remove unused members from main structure Liu Ying
2025-09-01 12:25 ` Neil Armstrong
2025-09-01 13:01 ` Raphael Gallais-Pou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).