All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH 00/15] drm/i915: Some house cleaning
@ 2022-09-12 11:17 Ville Syrjala
  2022-09-12 11:18 ` [Intel-gfx] [PATCH 01/15] drm/i915: Drop pointless middle man variable Ville Syrjala
                   ` (17 more replies)
  0 siblings, 18 replies; 33+ messages in thread
From: Ville Syrjala @ 2022-09-12 11:17 UTC (permalink / raw)
  To: intel-gfx

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

Bunch of easy cleanups.

Ville Syrjälä (15):
  drm/i915: Drop pointless middle man variable
  drm/i915: Clean up transcoder_to_stream_enc_status()
  drm/i915: Drop pointless 'budget' variable
  drm/i915: Use BIT() when dealing with output types
  drm/i915: Pass intel_encoder to to_lvds_encoder()
  drm/i915: Extract intel_edp_backlight_setup()
  drm/i915: Extract intel_tv_add_properties()
  drm/i915: Extract intel_dp_mst_add_properties()
  drm/i915: Extract intel_lvds_add_properties()
  drm/i915: Move eDP scaling_mode prop setup to the proper place
  drm/i915: Extract intel_attach_scaling_mode_property()
  drm/i915: Clean up connector->*_allowed setup
  drm/i915: Don't init eDP if we can't find a fixed mode
  drm/i915: Finish s/intel_encoder/encoder/ rename
  drm/i915: s/intel_connector/connector/ in init code

 drivers/gpu/drm/i915/display/g4x_dp.c         |  99 +++++-----
 drivers/gpu/drm/i915/display/g4x_hdmi.c       |  66 +++----
 drivers/gpu/drm/i915/display/icl_dsi.c        |  67 +++----
 drivers/gpu/drm/i915/display/intel_audio.c    |  10 +-
 .../gpu/drm/i915/display/intel_combo_phy.c    |  18 +-
 .../gpu/drm/i915/display/intel_connector.c    |  18 ++
 .../gpu/drm/i915/display/intel_connector.h    |   1 +
 drivers/gpu/drm/i915/display/intel_crt.c      |  60 +++---
 drivers/gpu/drm/i915/display/intel_crt.h      |   2 +-
 drivers/gpu/drm/i915/display/intel_ddi.c      |  23 +--
 drivers/gpu/drm/i915/display/intel_ddi.h      |   4 +-
 drivers/gpu/drm/i915/display/intel_display.c  |  30 ++-
 drivers/gpu/drm/i915/display/intel_display.h  |   2 +-
 .../drm/i915/display/intel_display_debugfs.c  |  19 +-
 .../drm/i915/display/intel_display_types.h    |  15 +-
 drivers/gpu/drm/i915/display/intel_dp.c       | 171 +++++++++---------
 drivers/gpu/drm/i915/display/intel_dp.h       |   7 +-
 drivers/gpu/drm/i915/display/intel_dp_hdcp.c  |  24 +--
 drivers/gpu/drm/i915/display/intel_dp_mst.c   | 160 ++++++++--------
 drivers/gpu/drm/i915/display/intel_dpll_mgr.c |  22 +--
 drivers/gpu/drm/i915/display/intel_dvo.c      |  69 ++++---
 drivers/gpu/drm/i915/display/intel_hdmi.c     |  46 +++--
 drivers/gpu/drm/i915/display/intel_hdmi.h     |   1 -
 drivers/gpu/drm/i915/display/intel_lvds.c     | 142 +++++++--------
 drivers/gpu/drm/i915/display/intel_opregion.c |  18 +-
 drivers/gpu/drm/i915/display/intel_opregion.h |   4 +-
 drivers/gpu/drm/i915/display/intel_sdvo.c     | 162 ++++++++---------
 drivers/gpu/drm/i915/display/intel_tv.c       | 129 ++++++-------
 drivers/gpu/drm/i915/display/vlv_dsi.c        | 140 +++++++-------
 29 files changed, 740 insertions(+), 789 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-09-26 11:38 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-12 11:17 [Intel-gfx] [PATCH 00/15] drm/i915: Some house cleaning Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 01/15] drm/i915: Drop pointless middle man variable Ville Syrjala
2022-09-26 10:33   ` Luca Coelho
2022-09-26 10:43     ` Jani Nikula
2022-09-26 11:05       ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 02/15] drm/i915: Clean up transcoder_to_stream_enc_status() Ville Syrjala
2022-09-26 10:34   ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 03/15] drm/i915: Drop pointless 'budget' variable Ville Syrjala
2022-09-26 10:37   ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 04/15] drm/i915: Use BIT() when dealing with output types Ville Syrjala
2022-09-26 10:40   ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 05/15] drm/i915: Pass intel_encoder to to_lvds_encoder() Ville Syrjala
2022-09-26 10:46   ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 06/15] drm/i915: Extract intel_edp_backlight_setup() Ville Syrjala
2022-09-12 11:57   ` Jani Nikula
2022-09-26 10:58   ` Luca Coelho
2022-09-26 11:16     ` Ville Syrjälä
2022-09-26 11:33       ` Luca Coelho
2022-09-26 11:38         ` Luca Coelho
2022-09-12 11:18 ` [Intel-gfx] [PATCH 07/15] drm/i915: Extract intel_tv_add_properties() Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 08/15] drm/i915: Extract intel_dp_mst_add_properties() Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 09/15] drm/i915: Extract intel_lvds_add_properties() Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 10/15] drm/i915: Move eDP scaling_mode prop setup to the proper place Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 11/15] drm/i915: Extract intel_attach_scaling_mode_property() Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 12/15] drm/i915: Clean up connector->*_allowed setup Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 13/15] drm/i915: Don't init eDP if we can't find a fixed mode Ville Syrjala
2022-09-12 12:02   ` Jani Nikula
2022-09-12 17:36     ` Ville Syrjälä
2022-09-12 11:18 ` [Intel-gfx] [PATCH 14/15] drm/i915: Finish s/intel_encoder/encoder/ rename Ville Syrjala
2022-09-12 11:18 ` [Intel-gfx] [PATCH 15/15] drm/i915: s/intel_connector/connector/ in init code Ville Syrjala
2022-09-12 17:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Some house cleaning Patchwork
2022-09-12 18:17 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-09-12 23:20 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

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.