intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] drm/i915/display: intel_display_types.h cleanup
@ 2024-08-26 16:31 Jani Nikula
  2024-08-26 16:31 ` [PATCH 1/7] drm/i915/wm: move struct intel_watermark_params to i9xx_wm.c Jani Nikula
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Jani Nikula @ 2024-08-26 16:31 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

Reduce the size and deps of intel_display_types.h.

Jani Nikula (7):
  drm/i915/wm: move struct intel_watermark_params to i9xx_wm.c
  drm/i915/hdcp: split out intel_hdcp_shim.h for struct intel_hdcp_shim
  drm/i915/display: include drm/drm_probe_helper.h where needed
  drm/i915/display: include drm/drm_vblank.h where needed
  drm/i915/display: include media/cec-notifier.h and linux/debugfs.h
    where needed
  drm/i915/fb: hide the guts of intel_fb_obj()
  drm/i915/display: drop extra includes from intel_display_types.h

 drivers/gpu/drm/i915/display/i9xx_wm.c        |   9 ++
 drivers/gpu/drm/i915/display/icl_dsi.c        |   1 +
 drivers/gpu/drm/i915/display/intel_alpm.c     |   2 +
 .../gpu/drm/i915/display/intel_atomic_plane.c |   1 +
 drivers/gpu/drm/i915/display/intel_bios.c     |   1 +
 drivers/gpu/drm/i915/display/intel_cdclk.c    |   1 +
 drivers/gpu/drm/i915/display/intel_crtc.c     |   1 +
 drivers/gpu/drm/i915/display/intel_cursor.c   |   1 +
 drivers/gpu/drm/i915/display/intel_display.c  |   1 +
 .../drm/i915/display/intel_display_debugfs.c  |   4 +-
 .../gpu/drm/i915/display/intel_display_irq.c  |   2 +
 .../drm/i915/display/intel_display_types.h    | 143 +-----------------
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  |   1 +
 .../drm/i915/display/intel_dp_link_training.c |   2 +
 drivers/gpu/drm/i915/display/intel_drrs.c     |   2 +
 drivers/gpu/drm/i915/display/intel_dvo.c      |   1 +
 drivers/gpu/drm/i915/display/intel_fb.c       |   6 +
 drivers/gpu/drm/i915/display/intel_fb.h       |   2 +
 drivers/gpu/drm/i915/display/intel_fbc.c      |   1 +
 drivers/gpu/drm/i915/display/intel_fbdev.c    |   1 +
 .../gpu/drm/i915/display/intel_frontbuffer.c  |   1 +
 drivers/gpu/drm/i915/display/intel_hdcp.c     |   1 +
 .../gpu/drm/i915/display/intel_hdcp_shim.h    | 137 +++++++++++++++++
 drivers/gpu/drm/i915/display/intel_hdmi.c     |   4 +
 drivers/gpu/drm/i915/display/intel_hotplug.c  |   3 +
 drivers/gpu/drm/i915/display/intel_lvds.c     |   1 +
 .../drm/i915/display/intel_modeset_setup.c    |   1 +
 drivers/gpu/drm/i915/display/intel_opregion.c |   1 +
 drivers/gpu/drm/i915/display/intel_pps.c      |   2 +
 drivers/gpu/drm/i915/display/intel_psr.c      |   2 +
 drivers/gpu/drm/i915/display/intel_sdvo.c     |   1 +
 drivers/gpu/drm/i915/display/intel_tv.c       |   1 +
 drivers/gpu/drm/i915/display/intel_vblank.c   |   2 +
 drivers/gpu/drm/i915/display/intel_wm.c       |   2 +
 drivers/gpu/drm/i915/display/skl_watermark.c  |   2 +
 drivers/gpu/drm/i915/display/vlv_dsi.c        |   1 +
 drivers/gpu/drm/xe/display/xe_display.c       |   1 +
 37 files changed, 205 insertions(+), 141 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_hdcp_shim.h

-- 
2.39.2


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

end of thread, other threads:[~2024-09-05  9:58 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26 16:31 [PATCH 0/7] drm/i915/display: intel_display_types.h cleanup Jani Nikula
2024-08-26 16:31 ` [PATCH 1/7] drm/i915/wm: move struct intel_watermark_params to i9xx_wm.c Jani Nikula
     [not found]   ` <d1fb6ed8e3808f3d7daa19f5eb5fa46fb697d0ab.camel@coelho.fi>
2024-09-05  9:58     ` Jani Nikula
2024-08-26 16:31 ` [PATCH 2/7] drm/i915/hdcp: split out intel_hdcp_shim.h for struct intel_hdcp_shim Jani Nikula
2024-08-26 16:31 ` [PATCH 3/7] drm/i915/display: include drm/drm_probe_helper.h where needed Jani Nikula
2024-08-26 16:31 ` [PATCH 4/7] drm/i915/display: include drm/drm_vblank.h " Jani Nikula
2024-08-26 16:31 ` [PATCH 5/7] drm/i915/display: include media/cec-notifier.h and linux/debugfs.h " Jani Nikula
2024-08-27 10:27   ` kernel test robot
2024-08-27 10:45   ` [PATCH v2] " Jani Nikula
2024-08-27 19:28   ` [PATCH 5/7] " kernel test robot
2024-08-26 16:31 ` [PATCH 6/7] drm/i915/fb: hide the guts of intel_fb_obj() Jani Nikula
2024-08-26 16:31 ` [PATCH 7/7] drm/i915/display: drop extra includes from intel_display_types.h Jani Nikula
2024-08-26 19:12 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: intel_display_types.h cleanup Patchwork
2024-08-26 19:12 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-08-26 19:22 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-08-27 12:41 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: intel_display_types.h cleanup (rev2) Patchwork
2024-08-27 12:41 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-08-27 12:49 ` ✓ Fi.CI.BAT: success " Patchwork
2024-08-28  7:15 ` ✗ 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;
as well as URLs for NNTP newsgroup(s).