On Fri, 2019-09-06 at 14:23 +0300, Lionel Landwerlin wrote:
> On 06/09/2019 14:14, Stanislav Lisovskiy wrote:
> > In certain situations encoder might be not present for connector,
> > however might be useful to displat probed modes for the connector,
> 
> s/displat/display/

Thanks! :)

- Stanislav
> 
> 
> > if any.
> > 
> > Signed-off-by: Stanislav Lisovskiy <[email protected]>
> 
> Tested-by: Lionel Landwerlin <[email protected]>
> > ---
> >   drivers/gpu/drm/i915/i915_debugfs.c | 8 ++++----
> >   1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c
> > b/drivers/gpu/drm/i915/i915_debugfs.c
> > index 9798f27a697a..8fa0510e897f 100644
> > --- a/drivers/gpu/drm/i915/i915_debugfs.c
> > +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> > @@ -2574,6 +2574,10 @@ static void intel_connector_info(struct
> > seq_file *m,
> >                drm_get_subpixel_order_name(connector-
> > >display_info.subpixel_order));
> >     seq_printf(m, "\tCEA rev: %d\n", connector-
> > >display_info.cea_rev);
> >   
> > +   seq_printf(m, "\tmodes:\n");
> > +   list_for_each_entry(mode, &connector->modes, head)
> > +           intel_seq_print_mode(m, 2, mode);
> > +
> >     if (!intel_encoder)
> >             return;
> >   
> > @@ -2597,10 +2601,6 @@ static void intel_connector_info(struct
> > seq_file *m,
> >     default:
> >             break;
> >     }
> > -
> > -   seq_printf(m, "\tmodes:\n");
> > -   list_for_each_entry(mode, &connector->modes, head)
> > -           intel_seq_print_mode(m, 2, mode);
> >   }
> >   
> >   static const char *plane_type(enum drm_plane_type type)
> 
> 
_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to