All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/4] drm/gma500: drop use of drmP.h
@ 2019-05-19 13:51 Sam Ravnborg
  2019-05-19 13:51 ` [PATCH v1 1/4] drm/gma500: remove empty gma_drm.h header file Sam Ravnborg
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Sam Ravnborg @ 2019-05-19 13:51 UTC (permalink / raw)
  To: dri-devel; +Cc: David Airlie

The following patchset remove use of the deprecated drmP.h
header file in the gma500 driver.
As preparation an empty header file is removed and a dependency on
drm_os_linux.h is dropped.
The list of include files are sorted and is some cases divided
up in blocks of linux/* drm/* etc.

Build tested with allmodconfig and allyesconfig for x86, arm, alpha and more.

Patchset made on top of drm-misc-next

	Sam

Sam Ravnborg (4):
      drm/gma500: remove empty gma_drm.h header file
      drm/gma500: drop drmP.h from header files
      drm/gma500: drop use of DRM_UDELAY wrapper
      drm/gma500: drop drmp.h include from all .c files

 drivers/gpu/drm/gma500/accel_2d.c             |  2 +-
 drivers/gpu/drm/gma500/cdv_device.c           |  5 +++--
 drivers/gpu/drm/gma500/cdv_intel_crt.c        |  2 +-
 drivers/gpu/drm/gma500/cdv_intel_display.c    |  4 +++-
 drivers/gpu/drm/gma500/cdv_intel_dp.c         |  7 ++++---
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c       |  5 +++--
 drivers/gpu/drm/gma500/cdv_intel_lvds.c       |  5 ++---
 drivers/gpu/drm/gma500/framebuffer.c          |  2 +-
 drivers/gpu/drm/gma500/framebuffer.h          |  1 -
 drivers/gpu/drm/gma500/gem.c                  |  5 +++--
 drivers/gpu/drm/gma500/gma_device.c           |  1 -
 drivers/gpu/drm/gma500/gma_display.c          |  8 +++++++-
 drivers/gpu/drm/gma500/gtt.c                  |  3 ++-
 drivers/gpu/drm/gma500/gtt.h                  |  1 -
 drivers/gpu/drm/gma500/intel_bios.c           |  4 ++--
 drivers/gpu/drm/gma500/intel_bios.h           |  3 +--
 drivers/gpu/drm/gma500/intel_gmbus.c          |  9 +++++----
 drivers/gpu/drm/gma500/intel_i2c.c            |  3 ++-
 drivers/gpu/drm/gma500/mdfld_device.c         |  6 ++++--
 drivers/gpu/drm/gma500/mdfld_dsi_dpi.c        |  2 ++
 drivers/gpu/drm/gma500/mdfld_dsi_output.c     |  5 +++--
 drivers/gpu/drm/gma500/mdfld_dsi_output.h     |  2 +-
 drivers/gpu/drm/gma500/mdfld_dsi_pkg_sender.c |  2 ++
 drivers/gpu/drm/gma500/mdfld_intel_display.c  |  5 ++++-
 drivers/gpu/drm/gma500/mdfld_tmd_vid.c        |  2 ++
 drivers/gpu/drm/gma500/mid_bios.c             |  3 +--
 drivers/gpu/drm/gma500/mmu.c                  |  4 +++-
 drivers/gpu/drm/gma500/oaktrail_crtc.c        |  4 +++-
 drivers/gpu/drm/gma500/oaktrail_device.c      |  7 ++++---
 drivers/gpu/drm/gma500/oaktrail_hdmi.c        |  6 ++++--
 drivers/gpu/drm/gma500/oaktrail_lvds.c        |  4 ++--
 drivers/gpu/drm/gma500/oaktrail_lvds_i2c.c    |  1 -
 drivers/gpu/drm/gma500/power.h                |  4 +++-
 drivers/gpu/drm/gma500/psb_device.c           |  4 ++--
 drivers/gpu/drm/gma500/psb_drv.c              | 26 +++++++++++++++++---------
 drivers/gpu/drm/gma500/psb_drv.h              |  4 ++--
 drivers/gpu/drm/gma500/psb_intel_display.c    |  3 ++-
 drivers/gpu/drm/gma500/psb_intel_lvds.c       |  3 +--
 drivers/gpu/drm/gma500/psb_intel_modes.c      |  2 +-
 drivers/gpu/drm/gma500/psb_intel_sdvo.c       | 10 +++++-----
 drivers/gpu/drm/gma500/psb_irq.c              |  3 ++-
 drivers/gpu/drm/gma500/psb_irq.h              |  2 +-
 drivers/gpu/drm/gma500/psb_lid.c              |  4 ++--
 drivers/gpu/drm/gma500/tc35876x-dsi-lvds.c    |  8 +++++---
 include/drm/gma_drm.h                         | 25 -------------------------
 45 files changed, 118 insertions(+), 103 deletions(-)

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2019-05-20 21:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-19 13:51 [PATCH v1 0/4] drm/gma500: drop use of drmP.h Sam Ravnborg
2019-05-19 13:51 ` [PATCH v1 1/4] drm/gma500: remove empty gma_drm.h header file Sam Ravnborg
2019-05-19 13:51 ` [PATCH v1 2/4] drm/gma500: drop drmP.h from header files Sam Ravnborg
2019-05-19 13:51 ` [PATCH v1 3/4] drm/gma500: drop use of DRM_UDELAY wrapper Sam Ravnborg
2019-05-19 13:51 ` [PATCH v1 4/4] drm/gma500: drop drmp.h include from all .c files Sam Ravnborg
2019-05-20 18:41 ` [PATCH v1 0/4] drm/gma500: drop use of drmP.h Daniel Vetter
2019-05-20 21:38   ` Patrik Jakobsson

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.