From: Jani Nikula <jani.nikula@intel.com>
To: dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [PATCH v2 00/10] drm: move Intel drm headers to a subdirectory
Date: Thu, 30 May 2024 16:19:01 +0300 [thread overview]
Message-ID: <cover.1717075103.git.jani.nikula@intel.com> (raw)
We've accumulated enough Intel specific header files under include/drm
that they warrant a subdirectory of their own. Clean up the top drm
header directory by moving the Intel files under include/drm/intel.
Since i915 is most impacted, I suggest merging the lot via
drm-intel-next. Please ack if this is fine for you.
BR,
Jani.
Jani Nikula (10):
drm: move intel-gtt.h under include/drm/intel
drm: move i915_gsc_proxy_mei_interface.h under include/drm/intel
drm: move i915_component.h under include/drm/intel
drm: move intel_lpe_audio.h under include/drm/intel
drm: move i915_drm.h under include/drm/intel
drm: move i915_pxp_tee_interface.h under include/drm/intel
drm: move i915_pciids.h under include/drm/intel
drm: move xe_pciids.h under include/drm/intel
drm: move i915_hdcp_interface.h under include/drm/intel
MAINTAINERS: update i915 and xe entries for include/drm/intel
Documentation/gpu/i915.rst | 2 +-
MAINTAINERS | 5 +++--
arch/x86/kernel/early-quirks.c | 4 ++--
drivers/char/agp/intel-agp.c | 2 +-
drivers/char/agp/intel-gtt.c | 2 +-
drivers/gpu/drm/i915/display/intel_audio.c | 2 +-
drivers/gpu/drm/i915/display/intel_display_device.c | 2 +-
drivers/gpu/drm/i915/display/intel_display_types.h | 2 +-
drivers/gpu/drm/i915/display/intel_hdcp.c | 2 +-
drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 2 +-
drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.c | 2 +-
drivers/gpu/drm/i915/display/intel_hdmi.c | 2 +-
drivers/gpu/drm/i915/display/intel_lpe_audio.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_stolen.c | 2 +-
drivers/gpu/drm/i915/gt/intel_ggtt.c | 4 ++--
drivers/gpu/drm/i915/gt/intel_ggtt_gmch.c | 2 +-
drivers/gpu/drm/i915/gt/intel_gt.c | 2 +-
drivers/gpu/drm/i915/gt/intel_rps.c | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c | 4 ++--
drivers/gpu/drm/i915/i915_pci.c | 2 +-
drivers/gpu/drm/i915/intel_device_info.c | 2 +-
drivers/gpu/drm/i915/intel_pci_config.h | 2 +-
drivers/gpu/drm/i915/pxp/intel_pxp_tee.c | 4 ++--
drivers/gpu/drm/i915/soc/intel_gmch.c | 2 +-
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
drivers/gpu/drm/xe/xe_ggtt.c | 2 +-
drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 ++--
drivers/gpu/drm/xe/xe_pci.c | 2 +-
drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c | 4 ++--
drivers/misc/mei/hdcp/mei_hdcp.c | 4 ++--
drivers/misc/mei/pxp/mei_pxp.c | 4 ++--
drivers/platform/x86/intel_ips.c | 2 +-
include/drm/{ => intel}/i915_component.h | 0
include/drm/{ => intel}/i915_drm.h | 0
include/drm/{ => intel}/i915_gsc_proxy_mei_interface.h | 0
include/drm/{ => intel}/i915_hdcp_interface.h | 0
include/drm/{ => intel}/i915_pciids.h | 0
include/drm/{ => intel}/i915_pxp_tee_interface.h | 0
include/drm/{ => intel}/intel-gtt.h | 0
include/drm/{ => intel}/intel_lpe_audio.h | 0
include/drm/{ => intel}/xe_pciids.h | 0
include/sound/hdaudio.h | 2 +-
sound/x86/intel_hdmi_audio.c | 2 +-
43 files changed, 44 insertions(+), 43 deletions(-)
rename include/drm/{ => intel}/i915_component.h (100%)
rename include/drm/{ => intel}/i915_drm.h (100%)
rename include/drm/{ => intel}/i915_gsc_proxy_mei_interface.h (100%)
rename include/drm/{ => intel}/i915_hdcp_interface.h (100%)
rename include/drm/{ => intel}/i915_pciids.h (100%)
rename include/drm/{ => intel}/i915_pxp_tee_interface.h (100%)
rename include/drm/{ => intel}/intel-gtt.h (100%)
rename include/drm/{ => intel}/intel_lpe_audio.h (100%)
rename include/drm/{ => intel}/xe_pciids.h (100%)
--
2.39.2
next reply other threads:[~2024-05-30 13:19 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-30 13:19 Jani Nikula [this message]
2024-05-30 13:19 ` [PATCH v2 01/10] drm: move intel-gtt.h under include/drm/intel Jani Nikula
2024-05-30 13:19 ` [PATCH v2 02/10] drm: move i915_gsc_proxy_mei_interface.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 03/10] drm: move i915_component.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 04/10] drm: move intel_lpe_audio.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 05/10] drm: move i915_drm.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 06/10] drm: move i915_pxp_tee_interface.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 07/10] drm: move i915_pciids.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 08/10] drm: move xe_pciids.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 09/10] drm: move i915_hdcp_interface.h " Jani Nikula
2024-05-30 13:19 ` [PATCH v2 10/10] MAINTAINERS: update i915 and xe entries for include/drm/intel Jani Nikula
2024-05-30 13:26 ` ✓ CI.Patch_applied: success for drm: move Intel drm headers to a subdirectory (rev4) Patchwork
2024-05-30 13:26 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-30 13:27 ` ✓ CI.KUnit: success " Patchwork
2024-05-30 13:42 ` ✓ CI.Build: " Patchwork
2024-05-30 13:43 ` ✗ CI.Hooks: failure " Patchwork
2024-05-30 13:44 ` ✗ CI.checksparse: warning " Patchwork
2024-05-30 14:08 ` ✓ CI.BAT: success " Patchwork
2024-05-30 14:55 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-05-30 14:55 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-05-30 15:03 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-30 15:25 ` ✓ CI.FULL: " Patchwork
2024-05-31 10:52 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-31 13:23 ` [PATCH v2 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=cover.1717075103.git.jani.nikula@intel.com \
--to=jani.nikula@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--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.