All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: Jani Nikula <jani.nikula@intel.com>,
	intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org
Cc: Daniel Vetter <daniel@ffwll.ch>, Dave Airlie <airlied@gmail.com>,
	Lucas De Marchi <lucas.demarchi@intel.com>,
	Tomas Winkler <tomas.winkler@intel.com>,
	Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>
Subject: [PATCH v2] drm: move i915_component.h under include/drm/intel
Date: Thu, 11 Apr 2024 18:34:37 +0300	[thread overview]
Message-ID: <20240411153437.340597-1-jani.nikula@intel.com> (raw)
In-Reply-To: <3ec9dfb58154d95e98afe03048a8f31cbbe1659e.1712743191.git.jani.nikula@intel.com>

Clean up the top level include/drm directory by grouping all the Intel
specific files under a common subdirectory.

v2: Also change Documentation/gpu/i915.rst (Andi)

Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Dave Airlie <airlied@gmail.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Tomas Winkler <tomas.winkler@intel.com>
Cc: Jaroslav Kysela <perex@perex.cz>
Cc: Takashi Iwai <tiwai@suse.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 Documentation/gpu/i915.rst                   | 2 +-
 drivers/gpu/drm/i915/display/intel_audio.c   | 2 +-
 drivers/gpu/drm/i915/display/intel_hdcp.c    | 2 +-
 drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c | 2 +-
 drivers/gpu/drm/i915/pxp/intel_pxp_tee.c     | 2 +-
 drivers/gpu/drm/xe/xe_gsc_proxy.c            | 2 +-
 drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c   | 2 +-
 drivers/misc/mei/hdcp/mei_hdcp.c             | 2 +-
 drivers/misc/mei/pxp/mei_pxp.c               | 2 +-
 include/drm/{ => intel}/i915_component.h     | 0
 include/sound/hdaudio.h                      | 2 +-
 11 files changed, 10 insertions(+), 10 deletions(-)
 rename include/drm/{ => intel}/i915_component.h (100%)

diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst
index 0ca1550fd9dc..fcb7a74506a2 100644
--- a/Documentation/gpu/i915.rst
+++ b/Documentation/gpu/i915.rst
@@ -150,7 +150,7 @@ High Definition Audio
 .. kernel-doc:: drivers/gpu/drm/i915/display/intel_audio.c
    :internal:
 
-.. kernel-doc:: include/drm/i915_component.h
+.. kernel-doc:: include/drm/intel/i915_component.h
    :internal:
 
 Intel HDMI LPE Audio Support
diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
index 07e0c73204f3..53951c50b504 100644
--- a/drivers/gpu/drm/i915/display/intel_audio.c
+++ b/drivers/gpu/drm/i915/display/intel_audio.c
@@ -26,7 +26,7 @@
 
 #include <drm/drm_edid.h>
 #include <drm/drm_eld.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 
 #include "i915_drv.h"
 #include "intel_atomic.h"
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index d5ed4c7dfbc0..183ea437d623 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -13,7 +13,7 @@
 #include <linux/random.h>
 
 #include <drm/display/drm_hdcp_helper.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 
 #include "i915_drv.h"
 #include "i915_reg.h"
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c b/drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c
index e7619d81353c..d8edd7c054c8 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c
@@ -5,7 +5,7 @@
 
 #include <linux/component.h>
 
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 #include <drm/intel/i915_gsc_proxy_mei_interface.h>
 
 #include "gt/intel_gt.h"
diff --git a/drivers/gpu/drm/i915/pxp/intel_pxp_tee.c b/drivers/gpu/drm/i915/pxp/intel_pxp_tee.c
index b00d6c280159..051b6cdcf721 100644
--- a/drivers/gpu/drm/i915/pxp/intel_pxp_tee.c
+++ b/drivers/gpu/drm/i915/pxp/intel_pxp_tee.c
@@ -6,7 +6,7 @@
 #include <linux/component.h>
 
 #include <drm/i915_pxp_tee_interface.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 
 #include "gem/i915_gem_lmem.h"
 #include "gt/intel_gt_print.h"
diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.c b/drivers/gpu/drm/xe/xe_gsc_proxy.c
index ea7b5ffb8954..a278d08b343c 100644
--- a/drivers/gpu/drm/xe/xe_gsc_proxy.c
+++ b/drivers/gpu/drm/xe/xe_gsc_proxy.c
@@ -9,7 +9,7 @@
 #include <linux/delay.h>
 
 #include <drm/drm_managed.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 #include <drm/intel/i915_gsc_proxy_mei_interface.h>
 
 #include "abi/gsc_proxy_commands_abi.h"
diff --git a/drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c b/drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c
index d5fbaf5d0c8e..f52fe23a6c0b 100644
--- a/drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c
+++ b/drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c
@@ -17,7 +17,7 @@
 #include <linux/slab.h>
 #include <linux/uuid.h>
 #include <drm/drm_connector.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 #include <drm/intel/i915_gsc_proxy_mei_interface.h>
 
 /**
diff --git a/drivers/misc/mei/hdcp/mei_hdcp.c b/drivers/misc/mei/hdcp/mei_hdcp.c
index f8759a6c9ed3..e43ea536c947 100644
--- a/drivers/misc/mei/hdcp/mei_hdcp.c
+++ b/drivers/misc/mei/hdcp/mei_hdcp.c
@@ -23,7 +23,7 @@
 #include <linux/mei_cl_bus.h>
 #include <linux/component.h>
 #include <drm/drm_connector.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 #include <drm/i915_hdcp_interface.h>
 
 #include "mei_hdcp.h"
diff --git a/drivers/misc/mei/pxp/mei_pxp.c b/drivers/misc/mei/pxp/mei_pxp.c
index b1e4c23b31a3..5a7a4d8b0e23 100644
--- a/drivers/misc/mei/pxp/mei_pxp.c
+++ b/drivers/misc/mei/pxp/mei_pxp.c
@@ -19,7 +19,7 @@
 #include <linux/mei_cl_bus.h>
 #include <linux/component.h>
 #include <drm/drm_connector.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 #include <drm/i915_pxp_tee_interface.h>
 
 #include "mei_pxp.h"
diff --git a/include/drm/i915_component.h b/include/drm/intel/i915_component.h
similarity index 100%
rename from include/drm/i915_component.h
rename to include/drm/intel/i915_component.h
diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h
index a73d7f34f4e5..00d1ab6936dd 100644
--- a/include/sound/hdaudio.h
+++ b/include/sound/hdaudio.h
@@ -18,7 +18,7 @@
 #include <sound/pcm.h>
 #include <sound/memalloc.h>
 #include <sound/hda_verbs.h>
-#include <drm/i915_component.h>
+#include <drm/intel/i915_component.h>
 
 /* codec node id */
 typedef u16 hda_nid_t;
-- 
2.39.2


  parent reply	other threads:[~2024-04-11 15:34 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-10 10:05 [PATCH 00/10] drm: move Intel drm headers to a subdirectory Jani Nikula
2024-04-10 10:05 ` [PATCH 01/10] drm/i915: use system include for drm headers Jani Nikula
2024-04-10 14:06   ` Andi Shyti
2024-04-10 10:05 ` [PATCH 02/10] drm: move intel-gtt.h under include/drm/intel Jani Nikula
2024-04-10 14:15   ` Andi Shyti
2024-04-10 10:05 ` [PATCH 03/10] drm: move i915_gsc_proxy_mei_interface.h " Jani Nikula
2024-04-11 14:11   ` Andi Shyti
2024-04-10 10:05 ` [PATCH 04/10] drm: move i915_component.h " Jani Nikula
2024-04-11 14:14   ` Andi Shyti
2024-04-11 15:34   ` Jani Nikula [this message]
2024-04-10 10:05 ` [PATCH 05/10] drm: move intel_lpe_audio.h " Jani Nikula
2024-04-11 14:19   ` Andi Shyti
2024-04-11 15:25     ` Jani Nikula
2024-04-10 10:05 ` [PATCH 06/10] drm: move i915_drm.h " Jani Nikula
2024-04-10 10:19   ` Ilpo Järvinen
2024-04-10 10:23     ` Jani Nikula
2024-04-10 10:26   ` [PATCH v2] " Jani Nikula
2024-04-11 14:21     ` Andi Shyti
2024-04-11 15:33       ` Jani Nikula
2024-04-10 10:05 ` [PATCH 07/10] drm: move i915_pxp_tee_interface.h " Jani Nikula
2024-04-10 10:05 ` [PATCH 08/10] drm: move i915_pciids.h " Jani Nikula
2024-04-10 10:05 ` [PATCH 09/10] drm: move xe_pciids.h " Jani Nikula
2024-04-10 10:05 ` [PATCH 10/10] drm: move i915_hdcp_interface.h " Jani Nikula
2024-04-10 10:29 ` ✓ CI.Patch_applied: success for drm: move Intel drm headers to a subdirectory Patchwork
2024-04-10 10:29 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-10 10:30 ` ✓ CI.KUnit: success " Patchwork
2024-04-10 10:39 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-04-10 10:39 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-04-10 10:42 ` ✓ CI.Build: success " Patchwork
2024-04-10 10:44 ` ✓ CI.Hooks: " Patchwork
2024-04-10 10:46 ` ✗ CI.checksparse: warning " Patchwork
2024-04-10 10:46 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-10 11:08 ` ✗ Fi.CI.CHECKPATCH: warning for drm: move Intel drm headers to a subdirectory (rev2) Patchwork
2024-04-10 11:08 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-04-10 11:09 ` ✓ CI.BAT: success for drm: move Intel drm headers to a subdirectory Patchwork
2024-04-10 11:14 ` ✓ Fi.CI.BAT: success for drm: move Intel drm headers to a subdirectory (rev2) Patchwork
2024-04-10 11:14 ` ✓ CI.Patch_applied: " Patchwork
2024-04-10 11:14 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-10 11:15 ` ✓ CI.KUnit: success " Patchwork
2024-04-10 11:27 ` ✓ CI.Build: " Patchwork
2024-04-10 11:30 ` ✓ CI.Hooks: " Patchwork
2024-04-10 11:32 ` ✗ CI.checksparse: warning " Patchwork
2024-04-10 13:35 ` ✓ CI.Patch_applied: success " Patchwork
2024-04-10 13:36 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-10 13:37 ` ✓ CI.KUnit: success " Patchwork
2024-04-10 13:48 ` ✓ CI.Build: " Patchwork
2024-04-10 13:51 ` ✓ CI.Hooks: " Patchwork
2024-04-10 13:53 ` ✗ CI.checksparse: warning " Patchwork
2024-04-10 14:01 ` ✗ CI.FULL: failure for drm: move Intel drm headers to a subdirectory Patchwork
2024-04-10 14:39 ` ✓ CI.BAT: success for drm: move Intel drm headers to a subdirectory (rev2) Patchwork
2024-04-10 18:31 ` ✗ CI.FULL: failure " Patchwork
2024-04-10 22:03 ` ✗ Fi.CI.IGT: " Patchwork
2024-04-10 22:25 ` [PATCH 00/10] drm: move Intel drm headers to a subdirectory Lucas De Marchi
2024-04-11 15:45 ` [PATCH 11/10] MAINTAINERS: update i915 and xe entries for include/drm/intel Jani Nikula
2024-04-11 18:00   ` Rodrigo Vivi
2024-04-11 18:09   ` Andi Shyti
2024-04-11 15:57 ` ✓ CI.Patch_applied: success for drm: move Intel drm headers to a subdirectory (rev3) Patchwork
2024-04-11 15:58 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-11 16:00 ` ✓ CI.KUnit: success " Patchwork
2024-04-11 16:12 ` ✓ CI.Build: " Patchwork
2024-04-11 16:15 ` ✓ CI.Hooks: " Patchwork
2024-04-11 16:17 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-04-11 16:17 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-04-11 16:17 ` ✗ CI.checksparse: " Patchwork
2024-04-11 16:30 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-11 16:47 ` ✓ CI.BAT: " Patchwork
2024-04-11 22:03 ` ✗ CI.FULL: failure " Patchwork
2024-04-12  2:17 ` ✓ Fi.CI.IGT: success " Patchwork
2024-04-15 13:08 ` [PATCH 00/10] drm: move Intel drm headers to a subdirectory Jani Nikula

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=20240411153437.340597-1-jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=lucas.demarchi@intel.com \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.com \
    --cc=tomas.winkler@intel.com \
    /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.