Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/16] drm: fix headers, add header test facility
@ 2024-03-08 11:55 Jani Nikula
  2024-03-08 11:55 ` [PATCH v2 01/16] drm: add missing header guards to drm_crtc_internal.h Jani Nikula
                   ` (30 more replies)
  0 siblings, 31 replies; 44+ messages in thread
From: Jani Nikula @ 2024-03-08 11:55 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-gfx, intel-xe, jani.nikula, David Airlie, Daniel Vetter,
	Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	Masahiro Yamada, lucas.demarchi

Follow-up to [1], with the already merged patches dropped, review
comments addressed, some new patches added, etc.

I did still leave in the FIXME comments in "drm/i2c: silence ch7006.h
and sil164.h kernel-doc warnings", and just silenced the
warnings. Fairly rarely used stuff, and mostly self-explanatory. I hope
that's fine.

BR,
Jani.


[1] https://lore.kernel.org/all/cover.1709749576.git.jani.nikula@intel.com/

Geert Uytterhoeven (1):
  m68k: pgtable: Add missing #include <asm/page.h>

Jani Nikula (15):
  drm: add missing header guards to drm_crtc_internal.h
  drm: add missing header guards to drm_crtc_helper_internal.h
  drm/encoder: improve drm_encoder_slave.h kernel-doc
  drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings
  drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc
  drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings
  drm/i915/pxp: fix i915_pxp_tee_interface.h kernel-doc warnings
  drm/ttm: fix ttm_bo.h kernel-doc warnings
  drm/ttm: make ttm_caching.h self-contained
  drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings
  drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings
  drm/ttm: make ttm_pool.h self-contained
  drm/dp_mst: avoid includes in drm_dp_mst_topology_internal.h
  drm: avoid includes in drm_crtc_helper_internal.h
  drm: ensure drm headers are self-contained and pass kernel-doc

 Kbuild                                        |  1 +
 arch/m68k/include/asm/pgtable.h               |  2 +
 drivers/gpu/drm/Kconfig                       | 11 +++
 drivers/gpu/drm/Makefile                      | 18 ++++
 .../display/drm_dp_mst_topology_internal.h    |  4 +-
 drivers/gpu/drm/drm_crtc_helper_internal.h    | 15 ++-
 drivers/gpu/drm/drm_crtc_internal.h           |  5 +
 include/Kbuild                                |  1 +
 include/drm/Makefile                          | 18 ++++
 include/drm/drm_encoder_slave.h               | 91 +++++++++++++++----
 include/drm/i2c/ch7006.h                      |  1 +
 include/drm/i2c/sil164.h                      |  1 +
 include/drm/i915_gsc_proxy_mei_interface.h    |  4 +-
 include/drm/i915_hdcp_interface.h             | 18 +++-
 include/drm/i915_pxp_tee_interface.h          | 27 ++++--
 include/drm/ttm/ttm_bo.h                      | 18 ++--
 include/drm/ttm/ttm_caching.h                 |  2 +
 include/drm/ttm/ttm_execbuf_util.h            |  7 +-
 include/drm/ttm/ttm_kmap_iter.h               |  4 +-
 include/drm/ttm/ttm_pool.h                    |  5 +-
 20 files changed, 203 insertions(+), 50 deletions(-)
 create mode 100644 include/Kbuild
 create mode 100644 include/drm/Makefile

-- 
2.39.2


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

end of thread, other threads:[~2025-03-02 15:47 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-08 11:55 [PATCH v2 00/16] drm: fix headers, add header test facility Jani Nikula
2024-03-08 11:55 ` [PATCH v2 01/16] drm: add missing header guards to drm_crtc_internal.h Jani Nikula
2024-03-08 17:19   ` Alex Deucher
2024-03-08 11:55 ` [PATCH v2 02/16] drm: add missing header guards to drm_crtc_helper_internal.h Jani Nikula
2024-03-08 17:21   ` Alex Deucher
2024-03-08 11:55 ` [PATCH v2 03/16] drm/encoder: improve drm_encoder_slave.h kernel-doc Jani Nikula
2024-03-08 17:21   ` Alex Deucher
2024-03-08 11:55 ` [PATCH v2 04/16] drm/i2c: silence ch7006.h and sil164.h kernel-doc warnings Jani Nikula
2024-03-08 11:55 ` [PATCH v2 05/16] drm/i915: fix i915_gsc_proxy_mei_interface.h kernel-doc Jani Nikula
2024-03-08 11:55 ` [PATCH v2 06/16] drm/i915/hdcp: fix i915_hdcp_interface.h kernel-doc warnings Jani Nikula
2024-03-08 11:55 ` [PATCH v2 07/16] drm/i915/pxp: fix i915_pxp_tee_interface.h " Jani Nikula
2024-03-08 15:10   ` Lucas De Marchi
2024-03-08 11:55 ` [PATCH v2 08/16] m68k: pgtable: Add missing #include <asm/page.h> Jani Nikula
2024-03-08 11:55 ` [PATCH v2 09/16] drm/ttm: fix ttm_bo.h kernel-doc warnings Jani Nikula
2024-03-08 13:03   ` Christian König
2024-03-08 16:07   ` [PATCH v3] " Jani Nikula
2024-03-08 11:55 ` [PATCH v2 10/16] drm/ttm: make ttm_caching.h self-contained Jani Nikula
2024-03-08 17:22   ` Alex Deucher
2024-03-08 11:55 ` [PATCH v2 11/16] drm/ttm: fix ttm_execbuf_util.h kernel-doc warnings Jani Nikula
2024-03-08 11:55 ` [PATCH v2 12/16] drm/ttm: fix ttm_kmap_iter.h " Jani Nikula
2024-03-08 11:55 ` [PATCH v2 13/16] drm/ttm: make ttm_pool.h self-contained Jani Nikula
2024-03-08 17:22   ` Alex Deucher
2024-03-08 11:55 ` [PATCH v2 14/16] drm/dp_mst: avoid includes in drm_dp_mst_topology_internal.h Jani Nikula
2024-03-08 15:12   ` Lucas De Marchi
2024-03-08 11:55 ` [PATCH v2 15/16] drm: avoid includes in drm_crtc_helper_internal.h Jani Nikula
2024-03-08 15:12   ` Lucas De Marchi
2024-03-08 11:55 ` [PATCH v2 16/16] drm: ensure drm headers are self-contained and pass kernel-doc Jani Nikula
2024-03-11 12:33   ` Jani Nikula
2025-03-02 15:46     ` Masahiro Yamada
2024-03-08 13:50 ` ✓ CI.Patch_applied: success for drm: fix headers, add header test facility Patchwork
2024-03-08 13:51 ` ✗ CI.checkpatch: warning " Patchwork
2024-03-08 13:52 ` ✓ CI.KUnit: success " Patchwork
2024-03-08 14:02 ` ✓ CI.Build: " Patchwork
2024-03-08 14:03 ` ✓ CI.Hooks: " Patchwork
2024-03-08 14:04 ` ✗ CI.checksparse: warning " Patchwork
2024-03-08 14:39 ` ✓ CI.BAT: success " Patchwork
2024-03-08 17:38 ` ✓ CI.Patch_applied: success for drm: fix headers, add header test facility (rev2) Patchwork
2024-03-08 17:38 ` ✗ CI.checkpatch: warning " Patchwork
2024-03-08 17:39 ` ✓ CI.KUnit: success " Patchwork
2024-03-08 17:49 ` ✓ CI.Build: " Patchwork
2024-03-08 17:50 ` ✓ CI.Hooks: " Patchwork
2024-03-08 17:51 ` ✗ CI.checksparse: warning " Patchwork
2024-03-08 18:26 ` ✓ CI.BAT: success " Patchwork
2024-03-11 12:35 ` [PATCH v2 00/16] drm: fix headers, add header test facility Jani Nikula

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox