All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH v2 0/8] drm/xe: clean up i915 includes both sides
@ 2023-03-03 10:52 Jani Nikula
  2023-03-03 10:52 ` [Intel-xe] [PATCH v2 1/8] drm/i915/display: don't use relative ../i915 includes Jani Nikula
                   ` (18 more replies)
  0 siblings, 19 replies; 25+ messages in thread
From: Jani Nikula @ 2023-03-03 10:52 UTC (permalink / raw)
  To: intel-xe; +Cc: jani.nikula, lucas.demarchi

v2 of https://patchwork.freedesktop.org/series/114573/

Jani Nikula (8):
  drm/i915/display: don't use relative ../i915 includes
  drm/i915/display: drop redundant display/ from includes
  drm/xe: drop unnecessary include
  drm/xe: drop redundant display/ from includes
  drm/xe: drop redundant ../ from includes
  drm/xe: move all top level i915 compat headers to a separate
    subdirectory
  drm/xe: remove unnecessary include
  drm/xe: drop top level i915 from include path

 .../gpu/drm/i915/display/intel_backlight.c    |  2 +-
 drivers/gpu/drm/i915/display/intel_bw.c       |  2 +-
 drivers/gpu/drm/i915/display/intel_cdclk.c    |  4 +-
 drivers/gpu/drm/i915/display/intel_display.c  | 48 +++++++++----------
 .../drm/i915/display/intel_display_power.c    |  2 +-
 drivers/gpu/drm/i915/display/intel_gmbus.c    |  2 +-
 drivers/gpu/drm/i915/display/intel_opregion.c |  2 +-
 drivers/gpu/drm/i915/display/intel_psr.c      |  2 +-
 drivers/gpu/drm/i915/display/skl_watermark.c  |  2 +-
 drivers/gpu/drm/xe/Makefile                   |  7 +--
 .../i915_active_types.h                       |  0
 .../i915_drv.h                                |  2 +-
 .../drm/xe/compat-i915-headers/i915_fixed.h   |  1 +
 .../gpu/drm/xe/compat-i915-headers/i915_reg.h |  1 +
 .../xe/compat-i915-headers/i915_reg_defs.h    |  1 +
 .../drm/xe/compat-i915-headers/i915_utils.h   |  1 +
 .../i915_vma.h                                |  0
 .../i915_vma_types.h                          |  0
 .../compat-i915-headers/intel_mchbar_regs.h   |  1 +
 .../xe/compat-i915-headers/intel_pci_config.h |  1 +
 .../intel_pm_types.h                          |  2 -
 .../intel_runtime_pm.h                        |  0
 .../intel_wakeref.h                           |  0
 drivers/gpu/drm/xe/display/ext/i915_irq.c     | 18 +++----
 .../drm/xe/display/ext/intel_device_info.c    |  5 +-
 drivers/gpu/drm/xe/display/ext/intel_dram.c   |  2 +-
 drivers/gpu/drm/xe/display/ext/intel_pm.c     |  6 +--
 drivers/gpu/drm/xe/regs/xe_reg_defs.h         |  2 +-
 drivers/gpu/drm/xe/xe_device_types.h          |  6 +--
 drivers/gpu/drm/xe/xe_display.c               | 26 +++++-----
 30 files changed, 76 insertions(+), 72 deletions(-)
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/i915_active_types.h (100%)
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/i915_drv.h (99%)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_fixed.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_reg.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_reg_defs.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/i915_utils.h
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/i915_vma.h (100%)
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/i915_vma_types.h (100%)
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_mchbar_regs.h
 create mode 100644 drivers/gpu/drm/xe/compat-i915-headers/intel_pci_config.h
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/intel_pm_types.h (95%)
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/intel_runtime_pm.h (100%)
 rename drivers/gpu/drm/xe/{display => compat-i915-headers}/intel_wakeref.h (100%)

-- 
2.39.1


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

end of thread, other threads:[~2023-03-08 10:44 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-03 10:52 [Intel-xe] [PATCH v2 0/8] drm/xe: clean up i915 includes both sides Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 1/8] drm/i915/display: don't use relative ../i915 includes Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 2/8] drm/i915/display: drop redundant display/ from includes Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 3/8] drm/xe: drop unnecessary include Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 4/8] drm/xe: drop redundant display/ from includes Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 5/8] drm/xe: drop redundant ../ " Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 6/8] drm/xe: move all top level i915 compat headers to a separate subdirectory Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 7/8] drm/xe: remove unnecessary include Jani Nikula
2023-03-03 10:52 ` [Intel-xe] [PATCH v2 8/8] drm/xe: drop top level i915 from include path Jani Nikula
2023-03-03 10:55 ` [Intel-xe] ✓ CI.Patch_applied: success for drm/xe: clean up i915 includes both sides (rev2) Patchwork
2023-03-03 10:56 ` [Intel-xe] ✗ CI.KUnit: failure " Patchwork
2023-03-03 12:29   ` Jani Nikula
2023-03-03 13:19 ` [Intel-xe] ✓ CI.Patch_applied: success " Patchwork
2023-03-03 13:19 ` [Intel-xe] ✗ CI.KUnit: failure " Patchwork
2023-03-07 16:45 ` [Intel-xe] ✗ CI.Patch_applied: " Patchwork
2023-03-07 16:48 ` Patchwork
2023-03-07 16:51 ` [Intel-xe] ✓ CI.Patch_applied: success " Patchwork
2023-03-07 19:37   ` Lucas De Marchi
2023-03-07 16:52 ` [Intel-xe] ✓ CI.KUnit: " Patchwork
2023-03-07 16:56 ` [Intel-xe] ✗ CI.Build: failure " Patchwork
2023-03-07 19:38   ` Lucas De Marchi
2023-03-07 19:47     ` Lucas De Marchi
2023-03-08  1:24 ` [Intel-xe] [PATCH v2 0/8] drm/xe: clean up i915 includes both sides Lucas De Marchi
2023-03-08  8:09   ` Jani Nikula
2023-03-08 10:44 ` [Intel-xe] ✗ CI.Patch_applied: failure for drm/xe: clean up i915 includes both sides (rev2) 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.