public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Siddh Raman Pant <code@siddh.me>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
	Simon Ser <contact@emersion.fr>
Cc: dri-devel <dri-devel@lists.freedesktop.org>,
	linux-kernel <linux-kernel@vger.kernel.org>
Subject: [PATCH v2 0/9] drm: Remove usage of deprecated DRM_* macros
Date: Thu, 22 Dec 2022 21:10:34 +0530	[thread overview]
Message-ID: <cover.1671723195.git.code@siddh.me> (raw)

This patchset aims to remove usages of deprecated DRM_* macros from the
files residing in drivers/gpu/drm root.

In process, I found out that NULL as first argument of drm_dbg_* wasn't
working, but it was listed as the alternative in deprecation comment,
so I fixed that before removing usages of DRM_DEBUG_* macros.

This patchset should be applied in order as changes might be dependent.

Please review and let me know if any errors are there, and hopefully
this gets accepted.

----
Changes in v2:
- Removed conversions to pr_*() in DRM_INFO, DRM_NOTE, and DRM_ERROR changes.
- Due to above, DRM_NOTE usage cannot be removed and the patch is dropped.
- DRY: NULL support is now achieved by way of a separate function.

Siddh Raman Pant (9):
  drm: Remove usage of deprecated DRM_INFO
  drm: Remove usage of deprecated DRM_ERROR
  drm/print: Fix support for NULL as first argument of drm_dbg_*
  drm: Remove usage of deprecated DRM_DEBUG
  drm: Remove usage of deprecated DRM_DEBUG_DRIVER
  drm: Remove usage of deprecated DRM_DEBUG_KMS
  drm: Remove usage of deprecated DRM_DEBUG_PRIME
  drm/drm_blend: Remove usage of deprecated DRM_DEBUG_ATOMIC
  drm/drm_lease: Remove usage of deprecated DRM_DEBUG_LEASE

 drivers/gpu/drm/drm_agpsupport.c       |   4 +-
 drivers/gpu/drm/drm_blend.c            |  13 ++-
 drivers/gpu/drm/drm_bridge.c           |   8 +-
 drivers/gpu/drm/drm_bufs.c             | 122 +++++++++++++------------
 drivers/gpu/drm/drm_client_modeset.c   | 118 +++++++++++++-----------
 drivers/gpu/drm/drm_color_mgmt.c       |   4 +-
 drivers/gpu/drm/drm_connector.c        |  28 +++---
 drivers/gpu/drm/drm_context.c          |  18 ++--
 drivers/gpu/drm/drm_crtc.c             |  36 ++++----
 drivers/gpu/drm/drm_crtc_helper.c      |  60 ++++++------
 drivers/gpu/drm/drm_debugfs_crc.c      |   8 +-
 drivers/gpu/drm/drm_displayid.c        |   4 +-
 drivers/gpu/drm/drm_dma.c              |  10 +-
 drivers/gpu/drm/drm_drv.c              |  20 ++--
 drivers/gpu/drm/drm_edid.c             |  17 ++--
 drivers/gpu/drm/drm_file.c             |  18 ++--
 drivers/gpu/drm/drm_framebuffer.c      |   3 +-
 drivers/gpu/drm/drm_gem.c              |   7 +-
 drivers/gpu/drm/drm_gem_dma_helper.c   |   6 +-
 drivers/gpu/drm/drm_gem_shmem_helper.c |   6 +-
 drivers/gpu/drm/drm_hashtab.c          |   6 +-
 drivers/gpu/drm/drm_ioc32.c            |  13 +--
 drivers/gpu/drm/drm_ioctl.c            |  24 ++---
 drivers/gpu/drm/drm_irq.c              |   4 +-
 drivers/gpu/drm/drm_lease.c            |  68 +++++++-------
 drivers/gpu/drm/drm_legacy_misc.c      |   4 +-
 drivers/gpu/drm/drm_lock.c             |  20 ++--
 drivers/gpu/drm/drm_mipi_dbi.c         |  19 ++--
 drivers/gpu/drm/drm_mode_config.c      |   2 +-
 drivers/gpu/drm/drm_mode_object.c      |   6 +-
 drivers/gpu/drm/drm_modes.c            |  10 +-
 drivers/gpu/drm/drm_modeset_helper.c   |   2 +-
 drivers/gpu/drm/drm_pci.c              |  12 +--
 drivers/gpu/drm/drm_plane.c            |  46 +++++-----
 drivers/gpu/drm/drm_probe_helper.c     |  39 ++++----
 drivers/gpu/drm/drm_rect.c             |   4 +-
 drivers/gpu/drm/drm_scatter.c          |  19 ++--
 drivers/gpu/drm/drm_syncobj.c          |   2 +-
 drivers/gpu/drm/drm_sysfs.c            |  22 ++---
 drivers/gpu/drm/drm_vm.c               |  45 +++++----
 include/drm/drm_print.h                |  44 ++++++---
 41 files changed, 486 insertions(+), 435 deletions(-)

-- 
2.35.1



             reply	other threads:[~2022-12-22 15:43 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-22 15:40 Siddh Raman Pant [this message]
2022-12-22 15:40 ` [PATCH v2 1/9] drm: Remove usage of deprecated DRM_INFO Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 2/9] drm: Remove usage of deprecated DRM_ERROR Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 3/9] drm/print: Fix support for NULL as first argument of drm_dbg_* Siddh Raman Pant
2022-12-24 23:21   ` kernel test robot
2022-12-22 15:40 ` [PATCH v2 4/9] drm: Remove usage of deprecated DRM_DEBUG Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 5/9] drm: Remove usage of deprecated DRM_DEBUG_DRIVER Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 6/9] drm: Remove usage of deprecated DRM_DEBUG_KMS Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 7/9] drm: Remove usage of deprecated DRM_DEBUG_PRIME Siddh Raman Pant
2022-12-22 15:43   ` Simon Ser
2022-12-22 15:40 ` [PATCH v2 8/9] drm/drm_blend: Remove usage of deprecated DRM_DEBUG_ATOMIC Siddh Raman Pant
2022-12-22 15:40 ` [PATCH v2 9/9] drm/drm_lease: Remove usage of deprecated DRM_DEBUG_LEASE Siddh Raman Pant
2022-12-26 17:46 ` [PATCH v2 0/9] drm: Remove usage of deprecated DRM_* macros Siddh Raman Pant

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.1671723195.git.code@siddh.me \
    --to=code@siddh.me \
    --cc=airlied@gmail.com \
    --cc=contact@emersion.fr \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=tzimmermann@suse.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox