linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/11] drm: header maintenance
@ 2019-07-18 16:14 Sam Ravnborg
  2019-07-18 16:14 ` [PATCH v1 01/11] drm/panel: make drm_panel.h self-contained Sam Ravnborg
                   ` (11 more replies)
  0 siblings, 12 replies; 38+ messages in thread
From: Sam Ravnborg @ 2019-07-18 16:14 UTC (permalink / raw)
  To: dri-devel, Intel Graphics Development
  Cc: David Airlie, Liviu Dudau, Lionel Landwerlin, Chris Wilson,
	Eric Anholt, Rob Herring, Maxime Ripard, CK Hu, Thierry Reding,
	Daniel Vetter, Chunming Zhou, Jani Nikula, Maarten Lankhorst,
	linux-mediatek, Stefan Agner, Matthias Brugger, Sean Paul,
	linux-arm-kernel, Boris Brezillon, Thomas Zimmermann, Rob Clark,
	Noralf Trønnes, Philipp Zabel, Christian König

First patch from Jani fixes so drm_print.h is self-contained.
Next two patches are trivial removal of uapi dependencies.

ati_pcigart is fixed to drop use of drm_os_linux.h

drm_vblank is likewise fixed to drop use of drm_os_linux.h
This was a non-trivial conversion, *review requested!*

The remaining patches are preparation for and removal of
uapi/drm/drmh from drm_file.h.
There were a few files where we had to push include
of drm/drm.h out to to have a clean build.

CK Hu - please let me apply the mediatek patch to
drm-misc-next, as it is required for the final patch.
Or push it to drm-misc-next yourself.

	Sam

Jani Nikula (1):
      drm/panel: make drm_panel.h self-contained

Sam Ravnborg (10):
      drm: drop uapi dependency from drm_print.h
      drm: drop uapi dependency from drm_vblank.h
      drm/ati_pcigart: drop dependency on drm_os_linux.h
      drm/vblank: drop use of DRM_WAIT_ON()
      drm: direct include of drm.h in drm_gem.c
      drm: direct include of drm.h in drm_gem_shmem_helper.c
      drm: direct include of drm.h in drm_prime.c
      drm: direct include of drm.h in drm_syncobj.c
      drm/mediatek: direct include of drm.h in mtk_drm_gem.c
      drm: drop uapi dependency from drm_file.h

 drivers/gpu/drm/ati_pcigart.c          | 10 ++++++----
 drivers/gpu/drm/drm_gem.c              |  1 +
 drivers/gpu/drm/drm_gem_shmem_helper.c |  1 +
 drivers/gpu/drm/drm_prime.c            |  1 +
 drivers/gpu/drm/drm_syncobj.c          |  1 +
 drivers/gpu/drm/drm_vblank.c           | 29 ++++++++++++++++++++---------
 drivers/gpu/drm/mediatek/mtk_drm_gem.c |  1 +
 include/drm/drm_file.h                 |  4 +---
 include/drm/drm_panel.h                |  1 +
 include/drm/drm_print.h                |  4 +---
 include/drm/drm_vblank.h               |  1 -
 11 files changed, 34 insertions(+), 20 deletions(-)



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-08-02 15:29 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 16:14 [PATCH v1 0/11] drm: header maintenance Sam Ravnborg
2019-07-18 16:14 ` [PATCH v1 01/11] drm/panel: make drm_panel.h self-contained Sam Ravnborg
2019-07-18 17:36   ` Sean Paul
2019-07-18 16:14 ` [PATCH v1 02/11] drm: drop uapi dependency from drm_print.h Sam Ravnborg
2019-07-18 16:46   ` Chris Wilson
2019-07-19  6:54     ` Koenig, Christian
2019-07-29 12:45       ` Jani Nikula
2019-07-29 14:35         ` Sam Ravnborg
2019-07-29 15:28           ` Koenig, Christian
2019-07-29 17:50             ` Sam Ravnborg
2019-08-02 13:48               ` [Intel-gfx] " Jani Nikula
2019-08-02 15:28                 ` Sam Ravnborg
2019-07-18 17:40   ` Sean Paul
2019-07-18 16:14 ` [PATCH v1 03/11] drm: drop uapi dependency from drm_vblank.h Sam Ravnborg
2019-07-18 17:41   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 04/11] drm/ati_pcigart: drop dependency on drm_os_linux.h Sam Ravnborg
2019-07-18 17:49   ` Sean Paul
2019-07-18 18:11     ` Sam Ravnborg
2019-07-18 18:30       ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 05/11] drm/vblank: drop use of DRM_WAIT_ON() Sam Ravnborg
2019-07-18 17:50   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 06/11] drm: direct include of drm.h in drm_gem.c Sam Ravnborg
2019-07-18 17:51   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 07/11] drm: direct include of drm.h in drm_gem_shmem_helper.c Sam Ravnborg
2019-07-18 17:51   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 08/11] drm: direct include of drm.h in drm_prime.c Sam Ravnborg
2019-07-18 17:51   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 09/11] drm: direct include of drm.h in drm_syncobj.c Sam Ravnborg
2019-07-18 17:51   ` Sean Paul
2019-07-18 16:15 ` [PATCH v1 10/11] drm/mediatek: direct include of drm.h in mtk_drm_gem.c Sam Ravnborg
2019-07-18 17:52   ` Sean Paul
2019-07-19  1:30   ` CK Hu
2019-07-19  1:34     ` CK Hu
2019-07-18 16:15 ` [PATCH v1 11/11] drm: drop uapi dependency from drm_file.h Sam Ravnborg
2019-07-18 18:40   ` Sean Paul
2019-07-19  6:56   ` Koenig, Christian
2019-07-19 11:08     ` Sam Ravnborg
2019-07-19 21:26 ` [PATCH v1 0/11] drm: header maintenance Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).