mbox series

[GIT,PULL] exynos-drm-next

Message ID 20231212051134.48524-1-inki.dae@samsung.com
State New
Headers show
Series [GIT,PULL] exynos-drm-next | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos tags/exynos-drm-next-for-v6.8

Message

대인기/Tizen Platform Lab(SR)/삼성전자 Dec. 12, 2023, 5:11 a.m. UTC
Hi Dave and Daniel,

   Just one fixup to shutdown relevant issue and two cleanups.

   Please kindly let me know if there is any problem.

Thanks,
Inki Dae


The following changes since commit a2f8994c1001cfa48483a3afa3550016a3ab0a3e:

  Merge tag 'exynos-drm-next-for-v6.7-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos into exynos-drm-next (2023-12-12 13:06:29 +0900)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos tags/exynos-drm-next-for-v6.8

for you to fetch changes up to ead5a41c8f8a13ad7b1c9fd2d7edb1ea909b777f:

  drm/exynos: dpi: Change connector type to DPI (2023-12-12 13:06:38 +0900)

----------------------------------------------------------------
One bug fix
- Add a missing call to drm_atomic_helper_shutdown() in Exynos DRM
driver.

  This function is necessary during system shutdown and when the driver
  is unbound. Without this function, components like panels may not shut
  down properly, potentially leading to power issue as mentioned in the
  kernel documentation, specially in the "driver instance overview"
  secstion of 'drm_drv.c'.

Two cleanups
- Convert '.remove()' callback function in the Exynos DRM platform
  driver to a version that returns void instead of an integer.
- Change connector type of exynos_drm_dpi.c module to DPI.

----------------------------------------------------------------
Douglas Anderson (1):
      drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time

Paul Cercueil (1):
      drm/exynos: dpi: Change connector type to DPI

Uwe Kleine-König (1):
      drm/exynos: Convert to platform remove callback returning void

 drivers/gpu/drm/exynos/exynos5433_drm_decon.c |  6 ++----
 drivers/gpu/drm/exynos/exynos7_drm_decon.c    |  6 ++----
 drivers/gpu/drm/exynos/exynos_dp.c            |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_dpi.c       |  2 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.c       | 16 +++++++++++++---
 drivers/gpu/drm/exynos/exynos_drm_fimc.c      |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_fimd.c      |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_g2d.c       |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_gsc.c       |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_mic.c       |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_rotator.c   |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_scaler.c    |  6 ++----
 drivers/gpu/drm/exynos/exynos_drm_vidi.c      |  6 ++----
 drivers/gpu/drm/exynos/exynos_hdmi.c          |  6 ++----
 drivers/gpu/drm/exynos/exynos_mixer.c         |  6 ++----
 15 files changed, 40 insertions(+), 56 deletions(-)