* [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock
@ 2019-03-26 17:33 Ville Syrjala
2019-03-26 17:33 ` [PATCH 2/4] drm: Fix tabs vs. spaces Ville Syrjala
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Ville Syrjala @ 2019-03-26 17:33 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
drm_display_info.pixel_clock is unused. Let's get rid of it.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
include/drm/drm_connector.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index bb3bd8e1633a..fcdca46e0c24 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -369,12 +369,6 @@ struct drm_display_info {
*/
unsigned int height_mm;
- /**
- * @pixel_clock: Maximum pixel clock supported by the sink, in units of
- * 100Hz. This mismatches the clock in &drm_display_mode (which is in
- * kHZ), because that's what the EDID uses as base unit.
- */
- unsigned int pixel_clock;
/**
* @bpc: Maximum bits per color channel. Used by HDMI and DP outputs.
*/
--
2.19.2
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH 2/4] drm: Fix tabs vs. spaces 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala @ 2019-03-26 17:33 ` Ville Syrjala 2019-03-26 18:10 ` Daniel Vetter 2019-03-26 17:34 ` [PATCH 3/4] drm: Kill drm_display_info.name Ville Syrjala ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Ville Syrjala @ 2019-03-26 17:33 UTC (permalink / raw) To: dri-devel; +Cc: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> A set of 8 spaces has snuck in. Replace with a tab, and toss in an extra newline while at it. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- include/drm/drm_connector.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index fcdca46e0c24..c5bff7518ec5 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -363,7 +363,8 @@ struct drm_display_info { /** * @width_mm: Physical width in mm. */ - unsigned int width_mm; + unsigned int width_mm; + /** * @height_mm: Physical height in mm. */ -- 2.19.2 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 2/4] drm: Fix tabs vs. spaces 2019-03-26 17:33 ` [PATCH 2/4] drm: Fix tabs vs. spaces Ville Syrjala @ 2019-03-26 18:10 ` Daniel Vetter 0 siblings, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2019-03-26 18:10 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, dri-devel On Tue, Mar 26, 2019 at 07:33:59PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > A set of 8 spaces has snuck in. Replace with a tab, and > toss in an extra newline while at it. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > include/drm/drm_connector.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h > index fcdca46e0c24..c5bff7518ec5 100644 > --- a/include/drm/drm_connector.h > +++ b/include/drm/drm_connector.h > @@ -363,7 +363,8 @@ struct drm_display_info { > /** > * @width_mm: Physical width in mm. > */ > - unsigned int width_mm; > + unsigned int width_mm; > + Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> > /** > * @height_mm: Physical height in mm. > */ > -- > 2.19.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 3/4] drm: Kill drm_display_info.name 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala 2019-03-26 17:33 ` [PATCH 2/4] drm: Fix tabs vs. spaces Ville Syrjala @ 2019-03-26 17:34 ` Ville Syrjala 2019-03-26 18:11 ` [Intel-gfx] " Daniel Vetter 2019-03-26 21:53 ` Sam Ravnborg 2019-03-26 17:34 ` [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN Ville Syrjala ` (3 subsequent siblings) 5 siblings, 2 replies; 11+ messages in thread From: Ville Syrjala @ 2019-03-26 17:34 UTC (permalink / raw) To: dri-devel; +Cc: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> drm_display_info.name is only ever set by a few panel drveirs but never actually used anywhere except in i915 debugfs code. Trash it. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/i915_debugfs.c | 1 - drivers/gpu/drm/panel/panel-arm-versatile.c | 2 -- drivers/gpu/drm/panel/panel-ilitek-ili9322.c | 2 -- drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c | 1 - drivers/gpu/drm/panel/panel-samsung-s6d16d0.c | 3 --- drivers/gpu/drm/panel/panel-tpo-tpg110.c | 2 -- include/drm/drm_connector.h | 5 ----- 7 files changed, 16 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 47bf07a59b5e..933228443b96 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -2866,7 +2866,6 @@ static void intel_connector_info(struct seq_file *m, if (connector->status == connector_status_disconnected) return; - seq_printf(m, "\tname: %s\n", connector->display_info.name); seq_printf(m, "\tphysical dimensions: %dx%dmm\n", connector->display_info.width_mm, connector->display_info.height_mm); diff --git a/drivers/gpu/drm/panel/panel-arm-versatile.c b/drivers/gpu/drm/panel/panel-arm-versatile.c index 078fa2c0eef8..a79908dfa3c8 100644 --- a/drivers/gpu/drm/panel/panel-arm-versatile.c +++ b/drivers/gpu/drm/panel/panel-arm-versatile.c @@ -264,8 +264,6 @@ static int versatile_panel_get_modes(struct drm_panel *panel) struct versatile_panel *vpanel = to_versatile_panel(panel); struct drm_display_mode *mode; - strncpy(connector->display_info.name, vpanel->panel_type->name, - DRM_DISPLAY_INFO_LEN); connector->display_info.width_mm = vpanel->panel_type->width_mm; connector->display_info.height_mm = vpanel->panel_type->height_mm; connector->display_info.bus_flags = vpanel->panel_type->bus_flags; diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9322.c b/drivers/gpu/drm/panel/panel-ilitek-ili9322.c index 35497ff08391..a1c4cd2940fb 100644 --- a/drivers/gpu/drm/panel/panel-ilitek-ili9322.c +++ b/drivers/gpu/drm/panel/panel-ilitek-ili9322.c @@ -662,8 +662,6 @@ static int ili9322_get_modes(struct drm_panel *panel) struct ili9322 *ili = panel_to_ili9322(panel); struct drm_display_mode *mode; - strncpy(connector->display_info.name, "ILI9322 TFT LCD driver\0", - DRM_DISPLAY_INFO_LEN); connector->display_info.width_mm = ili->conf->width_mm; connector->display_info.height_mm = ili->conf->height_mm; diff --git a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c index 5e8d4523e9ed..a1d8d92fac2b 100644 --- a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c +++ b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c @@ -190,7 +190,6 @@ static int lcd_olinuxino_get_modes(struct drm_panel *panel) num++; } - memcpy(connector->display_info.name, lcd_info->name, 32); connector->display_info.width_mm = lcd_info->width_mm; connector->display_info.height_mm = lcd_info->height_mm; connector->display_info.bpc = lcd_info->bpc; diff --git a/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c b/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c index 33c22ee036f8..f75bef24e050 100644 --- a/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c +++ b/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c @@ -148,9 +148,6 @@ static int s6d16d0_get_modes(struct drm_panel *panel) struct drm_connector *connector = panel->connector; struct drm_display_mode *mode; - strncpy(connector->display_info.name, "Samsung S6D16D0\0", - DRM_DISPLAY_INFO_LEN); - mode = drm_mode_duplicate(panel->drm, &samsung_s6d16d0_mode); if (!mode) { DRM_ERROR("bad mode or failed to add mode\n"); diff --git a/drivers/gpu/drm/panel/panel-tpo-tpg110.c b/drivers/gpu/drm/panel/panel-tpo-tpg110.c index 25f00cfc1af4..71591e5f5938 100644 --- a/drivers/gpu/drm/panel/panel-tpo-tpg110.c +++ b/drivers/gpu/drm/panel/panel-tpo-tpg110.c @@ -390,8 +390,6 @@ static int tpg110_get_modes(struct drm_panel *panel) struct tpg110 *tpg = to_tpg110(panel); struct drm_display_mode *mode; - strncpy(connector->display_info.name, tpg->panel_mode->name, - DRM_DISPLAY_INFO_LEN); connector->display_info.width_mm = tpg->width; connector->display_info.height_mm = tpg->height; connector->display_info.bus_flags = tpg->panel_mode->bus_flags; diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index c5bff7518ec5..02a131202add 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -355,11 +355,6 @@ enum drm_bus_flags { * drm_add_edid_modes(). */ struct drm_display_info { - /** - * @name: Name of the display. - */ - char name[DRM_DISPLAY_INFO_LEN]; - /** * @width_mm: Physical width in mm. */ -- 2.19.2 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 3/4] drm: Kill drm_display_info.name 2019-03-26 17:34 ` [PATCH 3/4] drm: Kill drm_display_info.name Ville Syrjala @ 2019-03-26 18:11 ` Daniel Vetter 2019-03-26 21:53 ` Sam Ravnborg 1 sibling, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2019-03-26 18:11 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, dri-devel On Tue, Mar 26, 2019 at 07:34:00PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > drm_display_info.name is only ever set by a few panel drveirs but > never actually used anywhere except in i915 debugfs code. Trash it. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Huh, nice find. Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> > --- > drivers/gpu/drm/i915/i915_debugfs.c | 1 - > drivers/gpu/drm/panel/panel-arm-versatile.c | 2 -- > drivers/gpu/drm/panel/panel-ilitek-ili9322.c | 2 -- > drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c | 1 - > drivers/gpu/drm/panel/panel-samsung-s6d16d0.c | 3 --- > drivers/gpu/drm/panel/panel-tpo-tpg110.c | 2 -- > include/drm/drm_connector.h | 5 ----- > 7 files changed, 16 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c > index 47bf07a59b5e..933228443b96 100644 > --- a/drivers/gpu/drm/i915/i915_debugfs.c > +++ b/drivers/gpu/drm/i915/i915_debugfs.c > @@ -2866,7 +2866,6 @@ static void intel_connector_info(struct seq_file *m, > if (connector->status == connector_status_disconnected) > return; > > - seq_printf(m, "\tname: %s\n", connector->display_info.name); > seq_printf(m, "\tphysical dimensions: %dx%dmm\n", > connector->display_info.width_mm, > connector->display_info.height_mm); > diff --git a/drivers/gpu/drm/panel/panel-arm-versatile.c b/drivers/gpu/drm/panel/panel-arm-versatile.c > index 078fa2c0eef8..a79908dfa3c8 100644 > --- a/drivers/gpu/drm/panel/panel-arm-versatile.c > +++ b/drivers/gpu/drm/panel/panel-arm-versatile.c > @@ -264,8 +264,6 @@ static int versatile_panel_get_modes(struct drm_panel *panel) > struct versatile_panel *vpanel = to_versatile_panel(panel); > struct drm_display_mode *mode; > > - strncpy(connector->display_info.name, vpanel->panel_type->name, > - DRM_DISPLAY_INFO_LEN); > connector->display_info.width_mm = vpanel->panel_type->width_mm; > connector->display_info.height_mm = vpanel->panel_type->height_mm; > connector->display_info.bus_flags = vpanel->panel_type->bus_flags; > diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9322.c b/drivers/gpu/drm/panel/panel-ilitek-ili9322.c > index 35497ff08391..a1c4cd2940fb 100644 > --- a/drivers/gpu/drm/panel/panel-ilitek-ili9322.c > +++ b/drivers/gpu/drm/panel/panel-ilitek-ili9322.c > @@ -662,8 +662,6 @@ static int ili9322_get_modes(struct drm_panel *panel) > struct ili9322 *ili = panel_to_ili9322(panel); > struct drm_display_mode *mode; > > - strncpy(connector->display_info.name, "ILI9322 TFT LCD driver\0", > - DRM_DISPLAY_INFO_LEN); > connector->display_info.width_mm = ili->conf->width_mm; > connector->display_info.height_mm = ili->conf->height_mm; > > diff --git a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c > index 5e8d4523e9ed..a1d8d92fac2b 100644 > --- a/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c > +++ b/drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c > @@ -190,7 +190,6 @@ static int lcd_olinuxino_get_modes(struct drm_panel *panel) > num++; > } > > - memcpy(connector->display_info.name, lcd_info->name, 32); > connector->display_info.width_mm = lcd_info->width_mm; > connector->display_info.height_mm = lcd_info->height_mm; > connector->display_info.bpc = lcd_info->bpc; > diff --git a/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c b/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c > index 33c22ee036f8..f75bef24e050 100644 > --- a/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c > +++ b/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c > @@ -148,9 +148,6 @@ static int s6d16d0_get_modes(struct drm_panel *panel) > struct drm_connector *connector = panel->connector; > struct drm_display_mode *mode; > > - strncpy(connector->display_info.name, "Samsung S6D16D0\0", > - DRM_DISPLAY_INFO_LEN); > - > mode = drm_mode_duplicate(panel->drm, &samsung_s6d16d0_mode); > if (!mode) { > DRM_ERROR("bad mode or failed to add mode\n"); > diff --git a/drivers/gpu/drm/panel/panel-tpo-tpg110.c b/drivers/gpu/drm/panel/panel-tpo-tpg110.c > index 25f00cfc1af4..71591e5f5938 100644 > --- a/drivers/gpu/drm/panel/panel-tpo-tpg110.c > +++ b/drivers/gpu/drm/panel/panel-tpo-tpg110.c > @@ -390,8 +390,6 @@ static int tpg110_get_modes(struct drm_panel *panel) > struct tpg110 *tpg = to_tpg110(panel); > struct drm_display_mode *mode; > > - strncpy(connector->display_info.name, tpg->panel_mode->name, > - DRM_DISPLAY_INFO_LEN); > connector->display_info.width_mm = tpg->width; > connector->display_info.height_mm = tpg->height; > connector->display_info.bus_flags = tpg->panel_mode->bus_flags; > diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h > index c5bff7518ec5..02a131202add 100644 > --- a/include/drm/drm_connector.h > +++ b/include/drm/drm_connector.h > @@ -355,11 +355,6 @@ enum drm_bus_flags { > * drm_add_edid_modes(). > */ > struct drm_display_info { > - /** > - * @name: Name of the display. > - */ > - char name[DRM_DISPLAY_INFO_LEN]; > - > /** > * @width_mm: Physical width in mm. > */ > -- > 2.19.2 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/4] drm: Kill drm_display_info.name 2019-03-26 17:34 ` [PATCH 3/4] drm: Kill drm_display_info.name Ville Syrjala 2019-03-26 18:11 ` [Intel-gfx] " Daniel Vetter @ 2019-03-26 21:53 ` Sam Ravnborg 1 sibling, 0 replies; 11+ messages in thread From: Sam Ravnborg @ 2019-03-26 21:53 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, dri-devel Hi Ville. On Tue, Mar 26, 2019 at 07:34:00PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > drm_display_info.name is only ever set by a few panel drveirs but drivers Nice clean-up! Sam _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala 2019-03-26 17:33 ` [PATCH 2/4] drm: Fix tabs vs. spaces Ville Syrjala 2019-03-26 17:34 ` [PATCH 3/4] drm: Kill drm_display_info.name Ville Syrjala @ 2019-03-26 17:34 ` Ville Syrjala 2019-03-26 18:15 ` Daniel Vetter 2019-03-26 18:10 ` [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Daniel Vetter ` (2 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Ville Syrjala @ 2019-03-26 17:34 UTC (permalink / raw) To: dri-devel; +Cc: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> Remove the unused DRM_DISPLAY_INFO_LEN from the uapi headers. I presume the original plan was to expose the display name via getconnector, but looks like that never happened. So we have the define for the length of the string but no string anywhere. A quick scan didn't seem to reveal userspace referencing this so hopefully we can just nuke it. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- include/uapi/drm/drm_mode.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index a439c2e67896..09d72966899a 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h @@ -33,7 +33,6 @@ extern "C" { #endif -#define DRM_DISPLAY_INFO_LEN 32 #define DRM_CONNECTOR_NAME_LEN 32 #define DRM_DISPLAY_MODE_LEN 32 #define DRM_PROP_NAME_LEN 32 -- 2.19.2 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN 2019-03-26 17:34 ` [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN Ville Syrjala @ 2019-03-26 18:15 ` Daniel Vetter 0 siblings, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2019-03-26 18:15 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, dri-devel On Tue, Mar 26, 2019 at 07:34:01PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Remove the unused DRM_DISPLAY_INFO_LEN from the uapi headers. > I presume the original plan was to expose the display name > via getconnector, but looks like that never happened. So we have > the define for the length of the string but no string anywhere. > > A quick scan didn't seem to reveal userspace referencing this > so hopefully we can just nuke it. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> -Daniel > --- > include/uapi/drm/drm_mode.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h > index a439c2e67896..09d72966899a 100644 > --- a/include/uapi/drm/drm_mode.h > +++ b/include/uapi/drm/drm_mode.h > @@ -33,7 +33,6 @@ > extern "C" { > #endif > > -#define DRM_DISPLAY_INFO_LEN 32 > #define DRM_CONNECTOR_NAME_LEN 32 > #define DRM_DISPLAY_MODE_LEN 32 > #define DRM_PROP_NAME_LEN 32 > -- > 2.19.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala ` (2 preceding siblings ...) 2019-03-26 17:34 ` [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN Ville Syrjala @ 2019-03-26 18:10 ` Daniel Vetter 2019-03-26 20:45 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork 2019-03-27 7:16 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2019-03-26 18:10 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx, dri-devel On Tue, Mar 26, 2019 at 07:33:58PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > drm_display_info.pixel_clock is unused. Let's get rid of it. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > include/drm/drm_connector.h | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h > index bb3bd8e1633a..fcdca46e0c24 100644 > --- a/include/drm/drm_connector.h > +++ b/include/drm/drm_connector.h > @@ -369,12 +369,6 @@ struct drm_display_info { > */ > unsigned int height_mm; > > - /** > - * @pixel_clock: Maximum pixel clock supported by the sink, in units of > - * 100Hz. This mismatches the clock in &drm_display_mode (which is in > - * kHZ), because that's what the EDID uses as base unit. > - */ > - unsigned int pixel_clock; I'm wondering how I've come up with this fantasy of a text, because afaict it wasn't ever used. At least seems unused back when I wrote the kerneldoc. *shrug* Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> > /** > * @bpc: Maximum bits per color channel. Used by HDMI and DP outputs. > */ > -- > 2.19.2 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [1/4] drm: Nuke unused drm_display_info.pixel_clock 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala ` (3 preceding siblings ...) 2019-03-26 18:10 ` [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Daniel Vetter @ 2019-03-26 20:45 ` Patchwork 2019-03-27 7:16 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2019-03-26 20:45 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: series starting with [1/4] drm: Nuke unused drm_display_info.pixel_clock URL : https://patchwork.freedesktop.org/series/58595/ State : success == Summary == CI Bug Log - changes from CI_DRM_5818 -> Patchwork_12605 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/58595/revisions/1/mbox/ Known issues ------------ Here are the changes found in Patchwork_12605 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_execlists: - fi-apl-guc: PASS -> INCOMPLETE [fdo#103927] / [fdo#109720] * igt@kms_frontbuffer_tracking@basic: - fi-byt-clapper: PASS -> FAIL [fdo#103167] * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: - fi-byt-clapper: PASS -> FAIL [fdo#107362] * igt@runner@aborted: - fi-apl-guc: NOTRUN -> FAIL [fdo#108622] / [fdo#109720] #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770: SKIP [fdo#109271] -> PASS +2 * igt@kms_frontbuffer_tracking@basic: - fi-icl-u3: FAIL [fdo#103167] -> PASS * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence: - fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS #### Warnings #### * igt@i915_selftest@live_contexts: - fi-icl-u3: INCOMPLETE [fdo#108569] -> DMESG-FAIL [fdo#108569] [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108622]: https://bugs.freedesktop.org/show_bug.cgi?id=108622 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109720]: https://bugs.freedesktop.org/show_bug.cgi?id=109720 Participating hosts (45 -> 37) ------------------------------ Missing (8): fi-kbl-soraka fi-ilk-m540 fi-bdw-5557u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-skl-iommu fi-snb-2600 Build changes ------------- * Linux: CI_DRM_5818 -> Patchwork_12605 CI_DRM_5818: de0e80842f3d103996e99cfe27f999690c2ee06e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4905: a350b9f9f606296b1599c3617c8530a8985709e2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12605: ef0c53b421c59a0320fae596b93a470384d8bbc9 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == ef0c53b421c5 drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN 840d0813adcb drm: Kill drm_display_info.name a161e5f2c9fb drm: Fix tabs vs. spaces 4c3e655e64a9 drm: Nuke unused drm_display_info.pixel_clock == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12605/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [1/4] drm: Nuke unused drm_display_info.pixel_clock 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala ` (4 preceding siblings ...) 2019-03-26 20:45 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork @ 2019-03-27 7:16 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2019-03-27 7:16 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: series starting with [1/4] drm: Nuke unused drm_display_info.pixel_clock URL : https://patchwork.freedesktop.org/series/58595/ State : failure == Summary == CI Bug Log - changes from CI_DRM_5818_full -> Patchwork_12605_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_12605_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_12605_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_12605_full: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - shard-apl: NOTRUN -> ( 3 FAIL ) [fdo#109373] #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_exec_big@single}: - shard-apl: INCOMPLETE [fdo#103927] -> FAIL Known issues ------------ Here are the changes found in Patchwork_12605_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_parallel@bsd2-fds: - shard-iclb: NOTRUN -> SKIP [fdo#109276] +14 * igt@gem_mmap_gtt@big-copy-odd: - shard-iclb: PASS -> TIMEOUT [fdo#109673] * igt@gem_mmap_gtt@hang: - shard-iclb: PASS -> FAIL [fdo#109677] * igt@gem_mocs_settings@mocs-rc6-dirty-render: - shard-iclb: NOTRUN -> SKIP [fdo#110206] * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-iclb: PASS -> INCOMPLETE [fdo#109801] * igt@gem_pread@pagefault-pread: - shard-iclb: NOTRUN -> SKIP [fdo#109277] +1 * igt@i915_pm_rpm@fences-dpms: - shard-skl: PASS -> INCOMPLETE [fdo#107807] * igt@i915_pm_rpm@gem-execbuf: - shard-apl: PASS -> DMESG-WARN [fdo#109373] * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> SKIP [fdo#109506] * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-kbl: NOTRUN -> SKIP [fdo#109271] +22 * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-iclb: NOTRUN -> SKIP [fdo#109308] * igt@i915_pm_rps@min-max-config-loaded: - shard-iclb: NOTRUN -> FAIL [fdo#108059] * igt@i915_pm_sseu@full-enable: - shard-iclb: NOTRUN -> SKIP [fdo#109288] * igt@kms_atomic_transition@4x-modeset-transitions-fencing: - shard-apl: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] * igt@kms_busy@extended-modeset-hang-newfb-render-c: - shard-skl: NOTRUN -> DMESG-WARN [fdo#110222] +2 * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-f: - shard-kbl: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2 * igt@kms_busy@extended-pageflip-hang-newfb-render-c: - shard-snb: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +13 * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a: - shard-iclb: PASS -> DMESG-WARN [fdo#110222] * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-d: - shard-iclb: NOTRUN -> SKIP [fdo#109278] +6 * igt@kms_chamelium@vga-edid-read: - shard-iclb: NOTRUN -> SKIP [fdo#109284] +4 * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> SKIP [fdo#109274] +4 * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-iclb: NOTRUN -> FAIL [fdo#103355] +1 * igt@kms_fbcon_fbt@psr: - shard-iclb: NOTRUN -> FAIL [fdo#103833] * igt@kms_fbcon_fbt@psr-suspend: - shard-skl: NOTRUN -> FAIL [fdo#103833] * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: PASS -> FAIL [fdo#105363] * igt@kms_flip_tiling@flip-y-tiled: - shard-iclb: PASS -> FAIL [fdo#108303] * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-iclb: PASS -> FAIL [fdo#103167] +5 * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-skl: PASS -> FAIL [fdo#105682] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-skl: PASS -> FAIL [fdo#103167] - shard-kbl: PASS -> FAIL [fdo#105682] +1 * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-iclb: PASS -> FAIL [fdo#109247] +19 * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-iclb: NOTRUN -> SKIP [fdo#109280] +27 * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> SKIP [fdo#109271] +106 * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu: - shard-iclb: PASS -> FAIL [fdo#105682] / [fdo#109247] * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-apl: NOTRUN -> SKIP [fdo#109271] +4 * igt@kms_panel_fitting@legacy: - shard-skl: NOTRUN -> FAIL [fdo#105456] * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-iclb: NOTRUN -> SKIP [fdo#109289] +2 * igt@kms_pipe_crc_basic@read-crc-pipe-c: - shard-kbl: PASS -> DMESG-WARN [fdo#103558] / [fdo#105602] +8 * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-f: - shard-skl: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +12 * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: PASS -> DMESG-WARN [fdo#103558] / [fdo#105602] +1 * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - shard-skl: NOTRUN -> FAIL [fdo#108145] +2 - shard-kbl: NOTRUN -> FAIL [fdo#108145] * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-kbl: PASS -> FAIL [fdo#108145] - shard-skl: PASS -> FAIL [fdo#108145] * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: NOTRUN -> FAIL [fdo#107815] * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-kbl: NOTRUN -> FAIL [fdo#108145] / [fdo#108590] * igt@kms_plane_scaling@pipe-c-scaler-with-pixel-format: - shard-glk: PASS -> SKIP [fdo#109271] / [fdo#109278] * igt@kms_psr2_su@frontbuffer: - shard-iclb: PASS -> SKIP [fdo#109642] * igt@kms_psr@no_drrs: - shard-iclb: PASS -> FAIL [fdo#108341] * igt@kms_psr@primary_mmap_cpu: - shard-iclb: PASS -> FAIL [fdo#107383] / [fdo#110215] +4 * igt@kms_psr@psr2_basic: - shard-iclb: PASS -> SKIP [fdo#109441] * igt@kms_setmode@basic: - shard-apl: PASS -> FAIL [fdo#99912] - shard-skl: NOTRUN -> FAIL [fdo#99912] - shard-snb: NOTRUN -> FAIL [fdo#99912] * igt@kms_vblank@pipe-b-ts-continuation-modeset-hang: - shard-apl: PASS -> FAIL [fdo#104894] +1 * igt@perf_pmu@busy-accuracy-50-vcs1: - shard-skl: NOTRUN -> SKIP [fdo#109271] +161 * igt@prime_nv_api@nv_self_import_to_different_fd: - shard-iclb: NOTRUN -> SKIP [fdo#109291] +2 #### Possible fixes #### * igt@gem_ctx_isolation@vecs0-s3: - shard-skl: INCOMPLETE [fdo#104108] / [fdo#107773] -> PASS * {igt@gem_exec_big@single}: - shard-glk: FAIL -> PASS * igt@gem_tiled_swapping@non-threaded: - shard-iclb: DMESG-WARN [fdo#108686] -> PASS * igt@i915_pm_rpm@pm-caching: - shard-skl: INCOMPLETE [fdo#107807] -> PASS * igt@kms_cursor_crc@cursor-64x64-suspend: - shard-skl: INCOMPLETE [fdo#104108] -> PASS * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-skl: FAIL [fdo#105363] -> PASS * igt@kms_flip@flip-vs-suspend-interruptible: - shard-skl: INCOMPLETE [fdo#109507] -> PASS - shard-kbl: INCOMPLETE [fdo#103665] -> PASS +1 * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt: - shard-iclb: FAIL [fdo#109247] -> PASS +13 * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: FAIL [fdo#103167] -> PASS +6 * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min: - shard-skl: FAIL [fdo#108145] -> PASS * igt@kms_psr@psr2_sprite_render: - shard-iclb: SKIP [fdo#109441] -> PASS +1 * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-iclb: FAIL [fdo#104894] -> PASS #### Warnings #### * igt@i915_selftest@live_contexts: - shard-iclb: INCOMPLETE [fdo#108569] -> DMESG-FAIL [fdo#108569] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103833]: https://bugs.freedesktop.org/show_bug.cgi?id=103833 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105456]: https://bugs.freedesktop.org/show_bug.cgi?id=105456 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#105682]: https://bugs.freedesktop.org/show_bug.cgi?id=105682 [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383 [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773 [fdo#107807]: https://bugs.freedesktop.org/show_bug.cgi?id=107807 [fdo#107815]: https://bugs.freedesktop.org/show_bug.cgi?id=107815 [fdo#108059]: https://bugs.freedesktop.org/show_bug.cgi?id=108059 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108303]: https://bugs.freedesktop.org/show_bug.cgi?id=108303 [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108590]: https://bugs.freedesktop.org/show_bug.cgi?id=108590 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109247]: https://bugs.freedesktop.org/show_bug.cgi?id=109247 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109277]: https://bugs.freedesktop.org/show_bug.cgi?id=109277 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109288]: https://bugs.freedesktop.org/show_bug.cgi?id=109288 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109373]: https://bugs.freedesktop.org/show_bug.cgi?id=109373 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109507]: https://bugs.freedesktop.org/show_bug.cgi?id=109507 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673 [fdo#109677]: https://bugs.freedesktop.org/show_bug.cgi?id=109677 [fdo#109801]: https://bugs.freedesktop.org/show_bug.cgi?id=109801 [fdo#110206]: https://bugs.freedesktop.org/show_bug.cgi?id=110206 [fdo#110215]: https://bugs.freedesktop.org/show_bug.cgi?id=110215 [fdo#110222]: https://bugs.freedesktop.org/show_bug.cgi?id=110222 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-hsw Build changes ------------- * Linux: CI_DRM_5818 -> Patchwork_12605 CI_DRM_5818: de0e80842f3d103996e99cfe27f999690c2ee06e @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4905: a350b9f9f606296b1599c3617c8530a8985709e2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12605: ef0c53b421c59a0320fae596b93a470384d8bbc9 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12605/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2019-03-27 7:16 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-03-26 17:33 [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Ville Syrjala 2019-03-26 17:33 ` [PATCH 2/4] drm: Fix tabs vs. spaces Ville Syrjala 2019-03-26 18:10 ` Daniel Vetter 2019-03-26 17:34 ` [PATCH 3/4] drm: Kill drm_display_info.name Ville Syrjala 2019-03-26 18:11 ` [Intel-gfx] " Daniel Vetter 2019-03-26 21:53 ` Sam Ravnborg 2019-03-26 17:34 ` [PATCH 4/4] drm/uapi: Remove unused DRM_DISPLAY_INFO_LEN Ville Syrjala 2019-03-26 18:15 ` Daniel Vetter 2019-03-26 18:10 ` [PATCH 1/4] drm: Nuke unused drm_display_info.pixel_clock Daniel Vetter 2019-03-26 20:45 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork 2019-03-27 7:16 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox