public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 00/17] tests/kms: Use igt_crtc_t instead of enum pipe
@ 2026-02-11 16:33 Ville Syrjala
  2026-02-11 16:33 ` [PATCH i-g-t 01/17] tests/kms_plane_alpha_blend: " Ville Syrjala
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Ville Syrjala @ 2026-02-11 16:33 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Convert a bunch of tests to use 'igt_crtc_t' instead of
'enum pipe'.

Afterwards there are still quite a few unconverted tests
left that will need stringer cocci magic or manual conversion...

Ville Syrjälä (17):
  tests/kms_plane_alpha_blend: Use igt_crtc_t instead of enum pipe
  tests/kms: Remove unused 'pipe' function parameters
  tests/kms: Remove const qualifier from 'pipe' function parameters
  tests/intel/kms_busy: Use 'enum pipe' instead of 'int'
  tests/kms_atomic_interruptible: s/crtc/drm_crtc/
  tests/intel/kms_psr2_su: Use igt_crtc_t instead of enum pipe
  tests/intel/kms_dsc*: Use igt_crtc_t instead of enum pipe
  tests/kms_cursor_legacy: Use igt_crtc_t instead of enum pipe
  tests/kms_color*: Use igt_crtc_t instead of enum pipe
  tests/kms_atomic_transition: Use igt_crtc_t instead of enum pipe
  tests/kms_plane: Use igt_crtc_t instead of enum pipe
  tests/intel/kms_pipe_b_c_ivb: Use igt_crtc_t instead of enum pipe
  tests/kms_vrr: Use igt_crtc_t instead of enum pipe
  tests/kms_display_modes: Use igt_crtc_t instead of enum pipe
  tests/kms_rotation_crc: Use igt_crtc_t instead of enum pipe
  tests/kms_properties: Use igt_crtc_t instead of enum pipe
  tests/kms: Use igt_crtc_t instead of enum pipe

 tests/amdgpu/amd_freesync_video_mode.c |  31 ++-
 tests/chamelium/kms_chamelium_color.c  |  49 ++--
 tests/intel/kms_busy.c                 |  80 +++---
 tests/intel/kms_dsc.c                  |  15 +-
 tests/intel/kms_dsc_helper.c           |   8 +-
 tests/intel/kms_dsc_helper.h           |   3 +-
 tests/intel/kms_fence_pin_leak.c       |   7 +-
 tests/intel/kms_flip_scaled_crc.c      |  36 ++-
 tests/intel/kms_flip_tiling.c          |   4 +-
 tests/intel/kms_pipe_b_c_ivb.c         | 102 +++++---
 tests/intel/kms_pm_rpm.c               |   4 +-
 tests/intel/kms_psr2_su.c              |  24 +-
 tests/kms_atomic.c                     | 151 +++++++----
 tests/kms_atomic_interruptible.c       |  61 +++--
 tests/kms_atomic_transition.c          | 147 ++++++-----
 tests/kms_color.c                      |  46 ++--
 tests/kms_color_helper.c               |  23 +-
 tests/kms_color_helper.h               |   8 +-
 tests/kms_color_pipeline.c             |  10 +-
 tests/kms_concurrent.c                 |   8 +-
 tests/kms_content_protection.c         |   4 +-
 tests/kms_cursor_legacy.c              | 344 ++++++++++++-------------
 tests/kms_display_modes.c              |  30 +--
 tests/kms_dither.c                     |  25 +-
 tests/kms_flip_event_leak.c            |   4 +-
 tests/kms_panel_fitting.c              |  40 +--
 tests/kms_pipe_crc_basic.c             |  59 +++--
 tests/kms_plane.c                      | 185 +++++++------
 tests/kms_plane_alpha_blend.c          |  61 +++--
 tests/kms_plane_scaling.c              |  10 +-
 tests/kms_properties.c                 |  91 ++++---
 tests/kms_rmfb.c                       |   8 +-
 tests/kms_rotation_crc.c               |  42 +--
 tests/kms_scaling_modes.c              |   8 +-
 tests/kms_universal_plane.c            |  81 +++---
 tests/kms_vrr.c                        |  98 +++----
 36 files changed, 1052 insertions(+), 855 deletions(-)

-- 
2.52.0


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2026-02-13  2:09 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-11 16:33 [PATCH i-g-t 00/17] tests/kms: Use igt_crtc_t instead of enum pipe Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 01/17] tests/kms_plane_alpha_blend: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 02/17] tests/kms: Remove unused 'pipe' function parameters Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 03/17] tests/kms: Remove const qualifier from " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 04/17] tests/intel/kms_busy: Use 'enum pipe' instead of 'int' Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 05/17] tests/kms_atomic_interruptible: s/crtc/drm_crtc/ Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 06/17] tests/intel/kms_psr2_su: Use igt_crtc_t instead of enum pipe Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 07/17] tests/intel/kms_dsc*: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 08/17] tests/kms_cursor_legacy: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 09/17] tests/kms_color*: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 10/17] tests/kms_atomic_transition: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 11/17] tests/kms_plane: " Ville Syrjala
2026-02-11 16:33 ` [PATCH i-g-t 12/17] tests/intel/kms_pipe_b_c_ivb: " Ville Syrjala
2026-02-11 16:34 ` [PATCH i-g-t 13/17] tests/kms_vrr: " Ville Syrjala
2026-02-11 16:34 ` [PATCH i-g-t 14/17] tests/kms_display_modes: " Ville Syrjala
2026-02-11 16:34 ` [PATCH i-g-t 15/17] tests/kms_rotation_crc: " Ville Syrjala
2026-02-11 16:34 ` [PATCH i-g-t 16/17] tests/kms_properties: " Ville Syrjala
2026-02-11 16:34 ` [PATCH i-g-t 17/17] tests/kms: " Ville Syrjala
2026-02-11 17:35 ` ✗ Xe.CI.BAT: failure for " Patchwork
2026-02-11 17:47 ` ✓ i915.CI.BAT: success " Patchwork
2026-02-12  6:18 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-12  9:42 ` [PATCH i-g-t 00/17] " Jani Nikula
2026-02-13  2:09 ` ✗ Xe.CI.FULL: failure for " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox