mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
drm/i915: Split the pipe_src dump to its own line
The pipe_src dump doesn't really fit in with the rest of the guys (pixel_rate, port_clock, min_cdclk) included on the same line. Split pipe_src onto its own line, next to the related pfit stuff. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/20260325135849.12603-4-ville.syrjala@linux.intel.com Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
This commit is contained in:
parent
799fe8dc2a
commit
c048609b05
|
|
@ -320,9 +320,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
|
|||
drm_printf(&p, "pipe mode: " DRM_MODE_FMT "\n",
|
||||
DRM_MODE_ARG(&pipe_config->hw.pipe_mode));
|
||||
intel_dump_crtc_timings(&p, &pipe_config->hw.pipe_mode);
|
||||
drm_printf(&p, "port clock: %d, pipe src: " DRM_RECT_FMT ", pixel rate %d, min cdclk %d\n",
|
||||
pipe_config->port_clock, DRM_RECT_ARG(&pipe_config->pipe_src),
|
||||
pipe_config->pixel_rate, pipe_config->min_cdclk);
|
||||
drm_printf(&p, "port clock: %d, pixel rate %d, min cdclk %d\n",
|
||||
pipe_config->port_clock, pipe_config->pixel_rate,
|
||||
pipe_config->min_cdclk);
|
||||
|
||||
drm_printf(&p, "linetime: %d, ips linetime: %d\n",
|
||||
pipe_config->linetime, pipe_config->ips_linetime);
|
||||
|
|
@ -334,6 +334,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
|
|||
pipe_config->scaler_state.scaler_id,
|
||||
pipe_config->hw.scaling_filter);
|
||||
|
||||
drm_printf(&p, "pipe src: " DRM_RECT_FMT "\n",
|
||||
DRM_RECT_ARG(&pipe_config->pipe_src));
|
||||
|
||||
if (HAS_GMCH(display))
|
||||
drm_printf(&p, "gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
|
||||
pipe_config->gmch_pfit.control,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user