* [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes
@ 2022-12-09 13:41 Jani Nikula
2022-12-09 14:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jani Nikula @ 2022-12-09 13:41 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Drop the redundant sub-directory from #includes under display/. Group
and sort the results.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_bios.c | 9 ++--
drivers/gpu/drm/i915/display/intel_display.c | 51 ++++++++++----------
drivers/gpu/drm/i915/display/intel_psr.c | 3 +-
3 files changed, 30 insertions(+), 33 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 572a4e3769f3..f7be6b25a975 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -25,16 +25,15 @@
*
*/
-#include <drm/drm_edid.h>
#include <drm/display/drm_dp_helper.h>
#include <drm/display/drm_dsc_helper.h>
-
-#include "display/intel_display.h"
-#include "display/intel_display_types.h"
-#include "display/intel_gmbus.h"
+#include <drm/drm_edid.h>
#include "i915_drv.h"
#include "i915_reg.h"
+#include "intel_display.h"
+#include "intel_display_types.h"
+#include "intel_gmbus.h"
#define _INTEL_BIOS_PRIVATE
#include "intel_vbt_defs.h"
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 6cdfdae2c712..a875fdef1476 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -24,15 +24,15 @@
* Eric Anholt <eric@anholt.net>
*/
-#include <acpi/video.h>
+#include <linux/dma-resv.h>
#include <linux/i2c.h>
#include <linux/input.h>
#include <linux/kernel.h>
#include <linux/module.h>
-#include <linux/dma-resv.h>
#include <linux/slab.h>
#include <linux/string_helpers.h>
#include <linux/vga_switcheroo.h>
+#include <acpi/video.h>
#include <drm/display/drm_dp_helper.h>
#include <drm/drm_atomic.h>
@@ -45,28 +45,6 @@
#include <drm/drm_probe_helper.h>
#include <drm/drm_rect.h>
-#include "display/intel_audio.h"
-#include "display/intel_crt.h"
-#include "display/intel_ddi.h"
-#include "display/intel_display_debugfs.h"
-#include "display/intel_display_power.h"
-#include "display/intel_dp.h"
-#include "display/intel_dp_mst.h"
-#include "display/intel_dpll.h"
-#include "display/intel_dpll_mgr.h"
-#include "display/intel_drrs.h"
-#include "display/intel_dsi.h"
-#include "display/intel_dvo.h"
-#include "display/intel_fb.h"
-#include "display/intel_gmbus.h"
-#include "display/intel_hdmi.h"
-#include "display/intel_lvds.h"
-#include "display/intel_sdvo.h"
-#include "display/intel_snps_phy.h"
-#include "display/intel_tv.h"
-#include "display/intel_vdsc.h"
-#include "display/intel_vrr.h"
-
#include "gem/i915_gem_lmem.h"
#include "gem/i915_gem_object.h"
@@ -76,32 +54,49 @@
#include "i915_drv.h"
#include "i915_reg.h"
#include "i915_utils.h"
+#include "i9xx_plane.h"
#include "icl_dsi.h"
#include "intel_acpi.h"
#include "intel_atomic.h"
#include "intel_atomic_plane.h"
+#include "intel_audio.h"
#include "intel_bw.h"
#include "intel_cdclk.h"
#include "intel_color.h"
+#include "intel_crt.h"
#include "intel_crtc.h"
#include "intel_crtc_state_dump.h"
+#include "intel_ddi.h"
#include "intel_de.h"
+#include "intel_display_debugfs.h"
+#include "intel_display_power.h"
#include "intel_display_types.h"
#include "intel_dmc.h"
+#include "intel_dp.h"
#include "intel_dp_link_training.h"
+#include "intel_dp_mst.h"
#include "intel_dpio_phy.h"
+#include "intel_dpll.h"
+#include "intel_dpll_mgr.h"
#include "intel_dpt.h"
+#include "intel_drrs.h"
#include "intel_dsb.h"
+#include "intel_dsi.h"
+#include "intel_dvo.h"
+#include "intel_fb.h"
#include "intel_fbc.h"
#include "intel_fbdev.h"
#include "intel_fdi.h"
#include "intel_fifo_underrun.h"
#include "intel_frontbuffer.h"
+#include "intel_gmbus.h"
#include "intel_hdcp.h"
+#include "intel_hdmi.h"
#include "intel_hotplug.h"
#include "intel_hti.h"
-#include "intel_modeset_verify.h"
+#include "intel_lvds.h"
#include "intel_modeset_setup.h"
+#include "intel_modeset_verify.h"
#include "intel_overlay.h"
#include "intel_panel.h"
#include "intel_pch_display.h"
@@ -113,10 +108,14 @@
#include "intel_pps.h"
#include "intel_psr.h"
#include "intel_quirks.h"
+#include "intel_sdvo.h"
+#include "intel_snps_phy.h"
#include "intel_sprite.h"
#include "intel_tc.h"
+#include "intel_tv.h"
+#include "intel_vdsc.h"
#include "intel_vga.h"
-#include "i9xx_plane.h"
+#include "intel_vrr.h"
#include "skl_scaler.h"
#include "skl_universal_plane.h"
#include "skl_watermark.h"
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 5b678916e6db..b0fd090ad75a 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -24,14 +24,13 @@
#include <drm/drm_atomic_helper.h>
#include <drm/drm_damage_helper.h>
-#include "display/intel_dp.h"
-
#include "i915_drv.h"
#include "i915_reg.h"
#include "intel_atomic.h"
#include "intel_crtc.h"
#include "intel_de.h"
#include "intel_display_types.h"
+#include "intel_dp.h"
#include "intel_dp_aux.h"
#include "intel_hdmi.h"
#include "intel_psr.h"
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: drop redundant display/ from #includes 2022-12-09 13:41 [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes Jani Nikula @ 2022-12-09 14:23 ` Patchwork 2022-12-10 0:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2022-12-14 5:11 ` [Intel-gfx] [PATCH] " Murthy, Arun R 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-12-09 14:23 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4065 bytes --] == Series Details == Series: drm/i915/display: drop redundant display/ from #includes URL : https://patchwork.freedesktop.org/series/111803/ State : success == Summary == CI Bug Log - changes from CI_DRM_12489 -> Patchwork_111803v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/index.html Participating hosts (25 -> 25) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_111803v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [PASS][1] -> [FAIL][2] ([i915#7229]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - fi-ivb-3770: [PASS][5] -> [INCOMPLETE][6] ([i915#3303] / [i915#7122]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [PASS][7] -> [INCOMPLETE][8] ([i915#4817]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@runner@aborted: - fi-ivb-3770: NOTRUN -> [FAIL][9] ([fdo#109271] / [i915#4312]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-ivb-3770/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {fi-jsl-1}: [INCOMPLETE][10] -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/fi-jsl-1/igt@i915_selftest@live@hangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/fi-jsl-1/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7122]: https://gitlab.freedesktop.org/drm/intel/issues/7122 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 Build changes ------------- * Linux: CI_DRM_12489 -> Patchwork_111803v1 CI-20190529: 20190529 CI_DRM_12489: 88ce885700bc3fad08382b83f408ac47abad7f3b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7089: f8a4a0b59ab9f0e408cb0817e440f63e7859917e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111803v1: 88ce885700bc3fad08382b83f408ac47abad7f3b @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits e9e4cb2e5ecf drm/i915/display: drop redundant display/ from #includes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/index.html [-- Attachment #2: Type: text/html, Size: 4608 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/display: drop redundant display/ from #includes 2022-12-09 13:41 [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes Jani Nikula 2022-12-09 14:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-12-10 0:25 ` Patchwork 2022-12-14 5:11 ` [Intel-gfx] [PATCH] " Murthy, Arun R 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-12-10 0:25 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 23543 bytes --] == Series Details == Series: drm/i915/display: drop redundant display/ from #includes URL : https://patchwork.freedesktop.org/series/111803/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12489_full -> Patchwork_111803v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_111803v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_111803v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (13 -> 9) ------------------------------ Missing (4): shard-rkl shard-tglu shard-tglu-10 shard-tglu-9 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111803v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@full-pulse: - shard-skl: NOTRUN -> ([PASS][1], [INCOMPLETE][2]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl2/igt@gem_exec_balancer@full-pulse.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl2/igt@gem_exec_balancer@full-pulse.html * igt@i915_pm_rpm@cursor: - shard-skl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@i915_pm_rpm@cursor.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_softpin@evict-prime@all}: - shard-skl: NOTRUN -> [FAIL][4] +4 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@gem_softpin@evict-prime@all.html Known issues ------------ Here are the changes found in Patchwork_111803v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [PASS][5] -> [SKIP][6] ([i915#4525]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-skl: NOTRUN -> [SKIP][7] ([fdo#109271]) +326 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_huc_copy@huc-copy: - shard-skl: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#2190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - shard-skl: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4613]) +5 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@gem_lmem_swapping@random-engines.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][10] -> [FAIL][11] ([i915#4171]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-tglb5/igt@gem_softpin@evict-single-offset.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-tglb5/igt@gem_softpin@evict-single-offset.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-skl: NOTRUN -> [FAIL][12] ([i915#7036]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc6-psr: - shard-skl: NOTRUN -> [FAIL][13] ([i915#3989] / [i915#454]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-skl: [PASS][14] -> [WARN][15] ([i915#1804]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-apl: NOTRUN -> [SKIP][16] ([fdo#109271]) +21 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#3886]) +15 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-skl: NOTRUN -> [SKIP][18] ([fdo#109271] / [fdo#111827]) +16 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium@hdmi-mode-timings: - shard-skl: NOTRUN -> ([SKIP][19], [SKIP][20]) ([fdo#109271] / [fdo#111827]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl2/igt@kms_chamelium@hdmi-mode-timings.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [fdo#111827]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@kms_chamelium@vga-hpd.html * igt@kms_color@ctm-red-to-blue@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-snb5/igt@kms_color@ctm-red-to-blue@pipe-b-vga-1.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][23] ([i915#7173]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-edp-1: - shard-iclb: [PASS][24] -> [DMESG-WARN][25] ([i915#2867]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb2/igt@kms_cursor_crc@cursor-suspend@pipe-b-edp-1.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb5/igt@kms_cursor_crc@cursor-suspend@pipe-b-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor@varying-size: - shard-iclb: [PASS][26] -> [FAIL][27] ([i915#2346]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb1/igt@kms_cursor_legacy@flip-vs-cursor@varying-size.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@varying-size.html * igt@kms_flip@dpms-off-confusion-interruptible@a-edp1: - shard-skl: NOTRUN -> ([DMESG-WARN][28], [PASS][29]) ([i915#1982]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl2/igt@kms_flip@dpms-off-confusion-interruptible@a-edp1.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@kms_flip@dpms-off-confusion-interruptible@a-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1: - shard-skl: NOTRUN -> [FAIL][30] ([i915#2122]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@kms_flip@plain-flip-ts-check-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][31] -> [SKIP][32] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#2672]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#2587] / [i915#2672]) +7 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt: - shard-skl: NOTRUN -> ([SKIP][35], [SKIP][36]) ([fdo#109271]) +9 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-edp-1: - shard-skl: NOTRUN -> [FAIL][37] ([i915#4573]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl1/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [PASS][38] -> [SKIP][39] ([i915#5176]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-iclb: [PASS][40] -> [SKIP][41] ([i915#5235]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#658]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-skl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#658]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109642] / [fdo#111068] / [i915#658]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][45] -> [SKIP][46] ([i915#5519]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-iclb: [PASS][47] -> [SKIP][48] ([i915#5519]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_writeback@writeback-pixel-formats: - shard-skl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@polling: - shard-skl: [PASS][50] -> [FAIL][51] ([i915#1542]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl1/igt@perf@polling.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl4/igt@perf@polling.html * igt@sysfs_clients@sema-10: - shard-skl: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#2994]) +4 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl1/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][53] ([i915#4525]) -> [PASS][54] +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb6/igt@gem_exec_balancer@parallel-balancer.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][55] ([i915#2842]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][57] ([i915#2190]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-tglb7/igt@gem_huc_copy@huc-copy.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-tglb1/igt@gem_huc_copy@huc-copy.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][59] ([i915#5566] / [i915#716]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-apl7/igt@gen9_exec_parse@allowed-single.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][61] ([i915#3989] / [i915#454]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][63] ([i915#4281]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_selftest@live@gt_heartbeat: - shard-skl: [DMESG-FAIL][65] ([i915#5334]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl6/igt@i915_selftest@live@gt_heartbeat.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl4/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-skl: [FAIL][67] ([i915#79]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-skl: [FAIL][69] ([i915#2122]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][71] ([fdo#109441]) -> [PASS][72] +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@kms_psr@psr2_basic.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb2/igt@kms_psr@psr2_basic.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [SKIP][73] ([i915#5519]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-tglb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@perf@blocking: - shard-skl: [FAIL][75] ([i915#1542]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl4/igt@perf@blocking.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl4/igt@perf@blocking.html #### Warnings #### * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [DMESG-FAIL][77] ([IGT#6]) -> [FAIL][78] ([i915#4573]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1: - shard-skl: [DMESG-FAIL][79] ([IGT#6]) -> [FAIL][80] ([i915#4573]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-skl6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-skl4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][81] ([i915#2920]) -> [SKIP][82] ([i915#658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-iclb: [SKIP][83] ([i915#658]) -> [SKIP][84] ([i915#2920]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][85] ([i915#2920]) -> [SKIP][86] ([fdo#111068] / [i915#658]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][87], [FAIL][88], [FAIL][89]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][90], [FAIL][91]) ([i915#3002] / [i915#4312]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-apl7/igt@runner@aborted.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-apl7/igt@runner@aborted.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12489/shard-apl8/igt@runner@aborted.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl3/igt@runner@aborted.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/shard-apl2/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_12489 -> Patchwork_111803v1 CI-20190529: 20190529 CI_DRM_12489: 88ce885700bc3fad08382b83f408ac47abad7f3b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7089: f8a4a0b59ab9f0e408cb0817e440f63e7859917e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111803v1: 88ce885700bc3fad08382b83f408ac47abad7f3b @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111803v1/index.html [-- Attachment #2: Type: text/html, Size: 28061 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes 2022-12-09 13:41 [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes Jani Nikula 2022-12-09 14:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2022-12-10 0:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-12-14 5:11 ` Murthy, Arun R 2 siblings, 0 replies; 4+ messages in thread From: Murthy, Arun R @ 2022-12-14 5:11 UTC (permalink / raw) To: Nikula, Jani, intel-gfx@lists.freedesktop.org; +Cc: Nikula, Jani > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Jani > Nikula > Sent: Friday, December 9, 2022 7:11 PM > To: intel-gfx@lists.freedesktop.org > Cc: Nikula, Jani <jani.nikula@intel.com> > Subject: [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from > #includes > > Drop the redundant sub-directory from #includes under display/. Group and > sort the results. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Thanks and Regards, Arun R Murthy -------------------- > drivers/gpu/drm/i915/display/intel_bios.c | 9 ++-- > drivers/gpu/drm/i915/display/intel_display.c | 51 ++++++++++---------- > drivers/gpu/drm/i915/display/intel_psr.c | 3 +- > 3 files changed, 30 insertions(+), 33 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_bios.c > b/drivers/gpu/drm/i915/display/intel_bios.c > index 572a4e3769f3..f7be6b25a975 100644 > --- a/drivers/gpu/drm/i915/display/intel_bios.c > +++ b/drivers/gpu/drm/i915/display/intel_bios.c > @@ -25,16 +25,15 @@ > * > */ > > -#include <drm/drm_edid.h> > #include <drm/display/drm_dp_helper.h> > #include <drm/display/drm_dsc_helper.h> > - > -#include "display/intel_display.h" > -#include "display/intel_display_types.h" > -#include "display/intel_gmbus.h" > +#include <drm/drm_edid.h> > > #include "i915_drv.h" > #include "i915_reg.h" > +#include "intel_display.h" > +#include "intel_display_types.h" > +#include "intel_gmbus.h" > > #define _INTEL_BIOS_PRIVATE > #include "intel_vbt_defs.h" > diff --git a/drivers/gpu/drm/i915/display/intel_display.c > b/drivers/gpu/drm/i915/display/intel_display.c > index 6cdfdae2c712..a875fdef1476 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -24,15 +24,15 @@ > * Eric Anholt <eric@anholt.net> > */ > > -#include <acpi/video.h> > +#include <linux/dma-resv.h> > #include <linux/i2c.h> > #include <linux/input.h> > #include <linux/kernel.h> > #include <linux/module.h> > -#include <linux/dma-resv.h> > #include <linux/slab.h> > #include <linux/string_helpers.h> > #include <linux/vga_switcheroo.h> > +#include <acpi/video.h> > > #include <drm/display/drm_dp_helper.h> > #include <drm/drm_atomic.h> > @@ -45,28 +45,6 @@ > #include <drm/drm_probe_helper.h> > #include <drm/drm_rect.h> > > -#include "display/intel_audio.h" > -#include "display/intel_crt.h" > -#include "display/intel_ddi.h" > -#include "display/intel_display_debugfs.h" > -#include "display/intel_display_power.h" > -#include "display/intel_dp.h" > -#include "display/intel_dp_mst.h" > -#include "display/intel_dpll.h" > -#include "display/intel_dpll_mgr.h" > -#include "display/intel_drrs.h" > -#include "display/intel_dsi.h" > -#include "display/intel_dvo.h" > -#include "display/intel_fb.h" > -#include "display/intel_gmbus.h" > -#include "display/intel_hdmi.h" > -#include "display/intel_lvds.h" > -#include "display/intel_sdvo.h" > -#include "display/intel_snps_phy.h" > -#include "display/intel_tv.h" > -#include "display/intel_vdsc.h" > -#include "display/intel_vrr.h" > - > #include "gem/i915_gem_lmem.h" > #include "gem/i915_gem_object.h" > > @@ -76,32 +54,49 @@ > #include "i915_drv.h" > #include "i915_reg.h" > #include "i915_utils.h" > +#include "i9xx_plane.h" > #include "icl_dsi.h" > #include "intel_acpi.h" > #include "intel_atomic.h" > #include "intel_atomic_plane.h" > +#include "intel_audio.h" > #include "intel_bw.h" > #include "intel_cdclk.h" > #include "intel_color.h" > +#include "intel_crt.h" > #include "intel_crtc.h" > #include "intel_crtc_state_dump.h" > +#include "intel_ddi.h" > #include "intel_de.h" > +#include "intel_display_debugfs.h" > +#include "intel_display_power.h" > #include "intel_display_types.h" > #include "intel_dmc.h" > +#include "intel_dp.h" > #include "intel_dp_link_training.h" > +#include "intel_dp_mst.h" > #include "intel_dpio_phy.h" > +#include "intel_dpll.h" > +#include "intel_dpll_mgr.h" > #include "intel_dpt.h" > +#include "intel_drrs.h" > #include "intel_dsb.h" > +#include "intel_dsi.h" > +#include "intel_dvo.h" > +#include "intel_fb.h" > #include "intel_fbc.h" > #include "intel_fbdev.h" > #include "intel_fdi.h" > #include "intel_fifo_underrun.h" > #include "intel_frontbuffer.h" > +#include "intel_gmbus.h" > #include "intel_hdcp.h" > +#include "intel_hdmi.h" > #include "intel_hotplug.h" > #include "intel_hti.h" > -#include "intel_modeset_verify.h" > +#include "intel_lvds.h" > #include "intel_modeset_setup.h" > +#include "intel_modeset_verify.h" > #include "intel_overlay.h" > #include "intel_panel.h" > #include "intel_pch_display.h" > @@ -113,10 +108,14 @@ > #include "intel_pps.h" > #include "intel_psr.h" > #include "intel_quirks.h" > +#include "intel_sdvo.h" > +#include "intel_snps_phy.h" > #include "intel_sprite.h" > #include "intel_tc.h" > +#include "intel_tv.h" > +#include "intel_vdsc.h" > #include "intel_vga.h" > -#include "i9xx_plane.h" > +#include "intel_vrr.h" > #include "skl_scaler.h" > #include "skl_universal_plane.h" > #include "skl_watermark.h" > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c > b/drivers/gpu/drm/i915/display/intel_psr.c > index 5b678916e6db..b0fd090ad75a 100644 > --- a/drivers/gpu/drm/i915/display/intel_psr.c > +++ b/drivers/gpu/drm/i915/display/intel_psr.c > @@ -24,14 +24,13 @@ > #include <drm/drm_atomic_helper.h> > #include <drm/drm_damage_helper.h> > > -#include "display/intel_dp.h" > - > #include "i915_drv.h" > #include "i915_reg.h" > #include "intel_atomic.h" > #include "intel_crtc.h" > #include "intel_de.h" > #include "intel_display_types.h" > +#include "intel_dp.h" > #include "intel_dp_aux.h" > #include "intel_hdmi.h" > #include "intel_psr.h" > -- > 2.34.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-12-14 5:11 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-09 13:41 [Intel-gfx] [PATCH] drm/i915/display: drop redundant display/ from #includes Jani Nikula 2022-12-09 14:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2022-12-10 0:25 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2022-12-14 5:11 ` [Intel-gfx] [PATCH] " Murthy, Arun R
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox