All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [CI v2 v2 00/12] drm/i915/display: bunch of struct intel_display conversions
Date: Mon, 28 Oct 2024 22:07:18 +0200	[thread overview]
Message-ID: <cover.1730146000.git.jani.nikula@intel.com> (raw)

Just resending [1] because I never got the CI logs for it.

[1] https://lore.kernel.org/r/cover.1729776384.git.jani.nikula@intel.com

Jani Nikula (12):
  drm/i915/gmbus: convert to struct intel_display
  drm/i915/cx0: remove unnecessary includes
  drm/i915/cx0: convert to struct intel_display
  drm/i915/dpio: convert to struct intel_display
  drm/i915/hdcp: further conversion to struct intel_display
  drm/i915/dp/hdcp: convert to struct intel_display
  drm/i915/crt: convert to struct intel_display
  drm/i915/display: convert vlv_wait_port_ready() to struct
    intel_display
  drm/i915/power: convert assert_chv_phy_status() to struct
    intel_display
  drm/i915/ips: convert to struct intel_display
  drm/i915/dsi: convert to struct intel_display
  drm/i915/de: remove unnecessary generic wrappers

 drivers/gpu/drm/i915/display/g4x_dp.c         |   3 +-
 drivers/gpu/drm/i915/display/g4x_hdmi.c       |   9 +-
 drivers/gpu/drm/i915/display/hsw_ips.c        |  47 +-
 drivers/gpu/drm/i915/display/icl_dsi.c        | 444 +++++++++---------
 drivers/gpu/drm/i915/display/icl_dsi.h        |   4 +-
 drivers/gpu/drm/i915/display/intel_bios.c     |   6 +-
 drivers/gpu/drm/i915/display/intel_crt.c      | 213 +++++----
 drivers/gpu/drm/i915/display/intel_crt.h      |  10 +-
 drivers/gpu/drm/i915/display/intel_cx0_phy.c  | 334 +++++++------
 drivers/gpu/drm/i915/display/intel_cx0_phy.h  |   8 +-
 drivers/gpu/drm/i915/display/intel_ddi.c      |   2 +-
 drivers/gpu/drm/i915/display/intel_de.h       |  46 +-
 drivers/gpu/drm/i915/display/intel_display.c  |  30 +-
 drivers/gpu/drm/i915/display/intel_display.h  |   2 +-
 .../drm/i915/display/intel_display_driver.c   |  11 +-
 .../gpu/drm/i915/display/intel_display_irq.c  |  11 +-
 .../i915/display/intel_display_power_well.c   | 114 +++--
 drivers/gpu/drm/i915/display/intel_dp.c       |   3 +-
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  |  93 ++--
 drivers/gpu/drm/i915/display/intel_dpio_phy.c | 158 +++----
 drivers/gpu/drm/i915/display/intel_dpio_phy.h |  22 +-
 drivers/gpu/drm/i915/display/intel_dpll_mgr.c |   6 +-
 drivers/gpu/drm/i915/display/intel_dsi_vbt.c  |   5 +-
 drivers/gpu/drm/i915/display/intel_dvo.c      |   8 +-
 drivers/gpu/drm/i915/display/intel_gmbus.c    | 290 ++++++------
 drivers/gpu/drm/i915/display/intel_gmbus.h    |  15 +-
 .../gpu/drm/i915/display/intel_gmbus_regs.h   |  16 +-
 drivers/gpu/drm/i915/display/intel_hdcp.c     |  30 +-
 drivers/gpu/drm/i915/display/intel_hdcp.h     |  10 +-
 drivers/gpu/drm/i915/display/intel_hdmi.c     |  11 +-
 .../gpu/drm/i915/display/intel_hotplug_irq.c  |   6 +-
 drivers/gpu/drm/i915/display/intel_lvds.c     |   2 +-
 .../gpu/drm/i915/display/intel_pch_display.c  |   3 +-
 drivers/gpu/drm/i915/display/intel_sdvo.c     |   9 +-
 drivers/gpu/drm/i915/i915_suspend.c           |   2 +-
 drivers/gpu/drm/xe/display/xe_display.c       |   4 +-
 36 files changed, 1024 insertions(+), 963 deletions(-)

-- 
2.39.5


             reply	other threads:[~2024-10-28 20:07 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-28 20:07 Jani Nikula [this message]
2024-10-28 20:07 ` [CI v2 v2 01/12] drm/i915/gmbus: convert to struct intel_display Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 02/12] drm/i915/cx0: remove unnecessary includes Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 03/12] drm/i915/cx0: convert to struct intel_display Jani Nikula
2024-10-29 16:08   ` [PATCH] " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 04/12] drm/i915/dpio: " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 05/12] drm/i915/hdcp: further conversion " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 06/12] drm/i915/dp/hdcp: convert " Jani Nikula
2024-10-29  9:04   ` [PATCH] " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 07/12] drm/i915/crt: " Jani Nikula
2024-10-29 10:52   ` [PATCH] " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 08/12] drm/i915/display: convert vlv_wait_port_ready() " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 09/12] drm/i915/power: convert assert_chv_phy_status() " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 10/12] drm/i915/ips: convert " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 11/12] drm/i915/dsi: " Jani Nikula
2024-10-28 20:07 ` [CI v2 v2 12/12] drm/i915/de: remove unnecessary generic wrappers Jani Nikula
2024-10-28 22:26 ` ✗ CI.Patch_applied: failure for drm/i915/display: bunch of struct intel_display conversions (rev3) Patchwork
2024-10-29  9:50 ` ✓ CI.Patch_applied: success for drm/i915/display: bunch of struct intel_display conversions (rev4) Patchwork
2024-10-29  9:51 ` ✗ CI.checkpatch: warning " Patchwork
2024-10-29  9:52 ` ✓ CI.KUnit: success " Patchwork
2024-10-29 10:04 ` ✓ CI.Build: " Patchwork
2024-10-29 10:06 ` ✓ CI.Hooks: " Patchwork
2024-10-29 10:08 ` ✗ CI.checksparse: warning " Patchwork
2024-10-29 10:41 ` ✓ CI.BAT: success " Patchwork
2024-10-29 11:42 ` ✓ CI.Patch_applied: success for drm/i915/display: bunch of struct intel_display conversions (rev5) Patchwork
2024-10-29 11:42 ` ✗ CI.checkpatch: warning " Patchwork
2024-10-29 11:43 ` ✓ CI.KUnit: success " Patchwork
2024-10-29 11:55 ` ✓ CI.Build: " Patchwork
2024-10-29 11:57 ` ✓ CI.Hooks: " Patchwork
2024-10-29 11:59 ` ✗ CI.checksparse: warning " Patchwork
2024-10-29 12:35 ` ✓ CI.BAT: success " Patchwork
2024-10-29 12:51 ` ✗ CI.FULL: failure for drm/i915/display: bunch of struct intel_display conversions (rev4) Patchwork
2024-10-29 14:12 ` ✗ CI.FULL: failure for drm/i915/display: bunch of struct intel_display conversions (rev5) Patchwork
2024-10-29 19:18 ` ✓ CI.Patch_applied: success for drm/i915/display: bunch of struct intel_display conversions (rev6) Patchwork
2024-10-29 19:19 ` ✗ CI.checkpatch: warning " Patchwork
2024-10-29 19:20 ` ✓ CI.KUnit: success " Patchwork
2024-10-29 19:31 ` ✓ CI.Build: " Patchwork
2024-10-29 19:34 ` ✓ CI.Hooks: " Patchwork
2024-10-29 19:35 ` ✗ CI.checksparse: warning " Patchwork
2024-10-29 19:58 ` ✓ CI.BAT: success " Patchwork
2024-10-29 23:22 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-10-29 23:22 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-10-29 23:22 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-29 23:56 ` ✗ CI.FULL: failure " Patchwork
2024-10-30 12:16 ` [CI v2 v2 00/12] drm/i915/display: bunch of struct intel_display conversions Jani Nikula
2024-10-30 22:42 ` ✓ Fi.CI.IGT: success for drm/i915/display: bunch of struct intel_display conversions (rev6) Patchwork
2024-10-30 22:49 ` Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1730146000.git.jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.