mbox series

[GIT,PULL] exynos-drm-next

Message ID 1555926670-7397-1-git-send-email-inki.dae@samsung.com (mailing list archive)
State Not Applicable
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-v5.2

Message

Inki Dae April 22, 2019, 9:51 a.m. UTC
Hi Dave,

   Just log cleanup patches of Exynos KMS and DMA drivers
   including one trivial style fixup.

   Please kinkdly let me know if there is any problem.


Thanks,
Inki Dae


The following changes since commit dbb92471674a48892f5e50779425e03388073ab9:

  Revert "drm: allow render capable master with DRM_AUTH ioctls" (2019-04-18 06:46:33 +1000)

are available in the git repository at:

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

for you to fetch changes up to 35319804851fad62dfa6284f4e638a7e2a620fe8:

  drm/ipp: clean up debug messages (2019-04-22 12:13:44 +0900)

----------------------------------------------------------------
Log cleanups
- Correct the use of log macro in error case.
- Drop unnecessary messages.
- Replace DRM_ERROR/DEBUG with DRM_DEV_ERROR/DEBUG.
- Print out debug messages with correct device name in vidi and ipp drivers.

One trivial cleanup
- Just fix checkpatch error, "foo* bar" to "foo *bar" in g2d driver.

----------------------------------------------------------------
Inki Dae (6):
      drm/fimd: use DRM_ERROR instead of DRM_INFO in error case
      drm/exynos: remove unnecessary messages
      drm/exynos: use DRM_DEV_ERROR to print out error message
      drm/exynos: use DRM_DEV_DEBUG* instead of DRM_DEBUG macro
      drm/vidi: replace platform_device pointer with device one
      drm/ipp: clean up debug messages

Seung-Woo Kim (1):
      drm/exynos: g2d: remove style error

 drivers/gpu/drm/exynos/exynos5433_drm_decon.c |  6 +-
 drivers/gpu/drm/exynos/exynos7_drm_decon.c    | 26 +++----
 drivers/gpu/drm/exynos/exynos_dp.c            |  9 ++-
 drivers/gpu/drm/exynos/exynos_drm_dma.c       |  2 +-
 drivers/gpu/drm/exynos/exynos_drm_dpi.c       |  9 ++-
 drivers/gpu/drm/exynos/exynos_drm_dsi.c       |  7 +-
 drivers/gpu/drm/exynos/exynos_drm_fb.c        |  9 ++-
 drivers/gpu/drm/exynos/exynos_drm_fbdev.c     | 26 ++++---
 drivers/gpu/drm/exynos/exynos_drm_fimc.c      | 97 ++++++++++++++-------------
 drivers/gpu/drm/exynos/exynos_drm_fimd.c      | 48 +++++++------
 drivers/gpu/drm/exynos/exynos_drm_g2d.c       | 51 +++++++-------
 drivers/gpu/drm/exynos/exynos_drm_gem.c       | 35 +++++-----
 drivers/gpu/drm/exynos/exynos_drm_gsc.c       | 72 ++++++++++----------
 drivers/gpu/drm/exynos/exynos_drm_ipp.c       | 71 ++++++++++++--------
 drivers/gpu/drm/exynos/exynos_drm_ipp.h       |  9 +--
 drivers/gpu/drm/exynos/exynos_drm_mic.c       | 29 ++++----
 drivers/gpu/drm/exynos/exynos_drm_plane.c     | 15 +++--
 drivers/gpu/drm/exynos/exynos_drm_rotator.c   |  5 +-
 drivers/gpu/drm/exynos/exynos_drm_scaler.c    |  5 +-
 drivers/gpu/drm/exynos/exynos_drm_vidi.c      | 49 ++++++++------
 drivers/gpu/drm/exynos/exynos_hdmi.c          | 75 ++++++++++++---------
 drivers/gpu/drm/exynos/exynos_mixer.c         | 43 +++++++-----
 22 files changed, 400 insertions(+), 298 deletions(-)

Comments

Dave Airlie April 24, 2019, 2:03 a.m. UTC | #1
Hi Inki,
  CC [M]  drivers/gpu/drm/exynos/exynos_drm_scaler.o
/home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_rotator.c:
In function ‘rotator_unbind’:
/home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_rotator.c:262:21:
warning: unused variable ‘drm_dev’ [-Wunused-variable]
  struct drm_device *drm_dev = data;
                     ^~~~~~~
/home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_scaler.c:
In function ‘scaler_unbind’:
/home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_scaler.c:472:21:
warning: unused variable ‘drm_dev’ [-Wunused-variable]
  struct drm_device *drm_dev = data;
                     ^~~~~~~
  LD [M]  drivers/gpu/drm/exynos/exynosdrm.o

are those new? please fix and resent the pull

Dave.

On Mon, 22 Apr 2019 at 19:50, Inki Dae <inki.dae@samsung.com> wrote:
>
> Hi Dave,
>
>    Just log cleanup patches of Exynos KMS and DMA drivers
>    including one trivial style fixup.
>
>    Please kinkdly let me know if there is any problem.
>
>
> Thanks,
> Inki Dae
>
>
> The following changes since commit dbb92471674a48892f5e50779425e03388073ab9:
>
>   Revert "drm: allow render capable master with DRM_AUTH ioctls" (2019-04-18 06:46:33 +1000)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos tags/exynos-drm-next-for-v5.2
>
> for you to fetch changes up to 35319804851fad62dfa6284f4e638a7e2a620fe8:
>
>   drm/ipp: clean up debug messages (2019-04-22 12:13:44 +0900)
>
> ----------------------------------------------------------------
> Log cleanups
> - Correct the use of log macro in error case.
> - Drop unnecessary messages.
> - Replace DRM_ERROR/DEBUG with DRM_DEV_ERROR/DEBUG.
> - Print out debug messages with correct device name in vidi and ipp drivers.
>
> One trivial cleanup
> - Just fix checkpatch error, "foo* bar" to "foo *bar" in g2d driver.
>
> ----------------------------------------------------------------
> Inki Dae (6):
>       drm/fimd: use DRM_ERROR instead of DRM_INFO in error case
>       drm/exynos: remove unnecessary messages
>       drm/exynos: use DRM_DEV_ERROR to print out error message
>       drm/exynos: use DRM_DEV_DEBUG* instead of DRM_DEBUG macro
>       drm/vidi: replace platform_device pointer with device one
>       drm/ipp: clean up debug messages
>
> Seung-Woo Kim (1):
>       drm/exynos: g2d: remove style error
>
>  drivers/gpu/drm/exynos/exynos5433_drm_decon.c |  6 +-
>  drivers/gpu/drm/exynos/exynos7_drm_decon.c    | 26 +++----
>  drivers/gpu/drm/exynos/exynos_dp.c            |  9 ++-
>  drivers/gpu/drm/exynos/exynos_drm_dma.c       |  2 +-
>  drivers/gpu/drm/exynos/exynos_drm_dpi.c       |  9 ++-
>  drivers/gpu/drm/exynos/exynos_drm_dsi.c       |  7 +-
>  drivers/gpu/drm/exynos/exynos_drm_fb.c        |  9 ++-
>  drivers/gpu/drm/exynos/exynos_drm_fbdev.c     | 26 ++++---
>  drivers/gpu/drm/exynos/exynos_drm_fimc.c      | 97 ++++++++++++++-------------
>  drivers/gpu/drm/exynos/exynos_drm_fimd.c      | 48 +++++++------
>  drivers/gpu/drm/exynos/exynos_drm_g2d.c       | 51 +++++++-------
>  drivers/gpu/drm/exynos/exynos_drm_gem.c       | 35 +++++-----
>  drivers/gpu/drm/exynos/exynos_drm_gsc.c       | 72 ++++++++++----------
>  drivers/gpu/drm/exynos/exynos_drm_ipp.c       | 71 ++++++++++++--------
>  drivers/gpu/drm/exynos/exynos_drm_ipp.h       |  9 +--
>  drivers/gpu/drm/exynos/exynos_drm_mic.c       | 29 ++++----
>  drivers/gpu/drm/exynos/exynos_drm_plane.c     | 15 +++--
>  drivers/gpu/drm/exynos/exynos_drm_rotator.c   |  5 +-
>  drivers/gpu/drm/exynos/exynos_drm_scaler.c    |  5 +-
>  drivers/gpu/drm/exynos/exynos_drm_vidi.c      | 49 ++++++++------
>  drivers/gpu/drm/exynos/exynos_hdmi.c          | 75 ++++++++++++---------
>  drivers/gpu/drm/exynos/exynos_mixer.c         | 43 +++++++-----
>  22 files changed, 400 insertions(+), 298 deletions(-)
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
Inki Dae April 24, 2019, 2:11 a.m. UTC | #2
Hi Dave,

19. 4. 24. 오전 11:03에 Dave Airlie 이(가) 쓴 글:
> Hi Inki,
>   CC [M]  drivers/gpu/drm/exynos/exynos_drm_scaler.o
> /home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_rotator.c:
> In function ‘rotator_unbind’:
> /home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_rotator.c:262:21:
> warning: unused variable ‘drm_dev’ [-Wunused-variable]
>   struct drm_device *drm_dev = data;
>                      ^~~~~~~
> /home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_scaler.c:
> In function ‘scaler_unbind’:
> /home/airlied/devel/kernel/dim/src/drivers/gpu/drm/exynos/exynos_drm_scaler.c:472:21:
> warning: unused variable ‘drm_dev’ [-Wunused-variable]
>   struct drm_device *drm_dev = data;
>                      ^~~~~~~
>   LD [M]  drivers/gpu/drm/exynos/exynosdrm.o
> 
> are those new? please fix and resent the pull
> 

Sorry for this. I missed to remove them with some cleanup. Will resend the pull.

Thanks,
Inki Dae

> Dave.
> 
> On Mon, 22 Apr 2019 at 19:50, Inki Dae <inki.dae@samsung.com> wrote:
>>
>> Hi Dave,
>>
>>    Just log cleanup patches of Exynos KMS and DMA drivers
>>    including one trivial style fixup.
>>
>>    Please kinkdly let me know if there is any problem.
>>
>>
>> Thanks,
>> Inki Dae
>>
>>
>> The following changes since commit dbb92471674a48892f5e50779425e03388073ab9:
>>
>>   Revert "drm: allow render capable master with DRM_AUTH ioctls" (2019-04-18 06:46:33 +1000)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos tags/exynos-drm-next-for-v5.2
>>
>> for you to fetch changes up to 35319804851fad62dfa6284f4e638a7e2a620fe8:
>>
>>   drm/ipp: clean up debug messages (2019-04-22 12:13:44 +0900)
>>
>> ----------------------------------------------------------------
>> Log cleanups
>> - Correct the use of log macro in error case.
>> - Drop unnecessary messages.
>> - Replace DRM_ERROR/DEBUG with DRM_DEV_ERROR/DEBUG.
>> - Print out debug messages with correct device name in vidi and ipp drivers.
>>
>> One trivial cleanup
>> - Just fix checkpatch error, "foo* bar" to "foo *bar" in g2d driver.
>>
>> ----------------------------------------------------------------
>> Inki Dae (6):
>>       drm/fimd: use DRM_ERROR instead of DRM_INFO in error case
>>       drm/exynos: remove unnecessary messages
>>       drm/exynos: use DRM_DEV_ERROR to print out error message
>>       drm/exynos: use DRM_DEV_DEBUG* instead of DRM_DEBUG macro
>>       drm/vidi: replace platform_device pointer with device one
>>       drm/ipp: clean up debug messages
>>
>> Seung-Woo Kim (1):
>>       drm/exynos: g2d: remove style error
>>
>>  drivers/gpu/drm/exynos/exynos5433_drm_decon.c |  6 +-
>>  drivers/gpu/drm/exynos/exynos7_drm_decon.c    | 26 +++----
>>  drivers/gpu/drm/exynos/exynos_dp.c            |  9 ++-
>>  drivers/gpu/drm/exynos/exynos_drm_dma.c       |  2 +-
>>  drivers/gpu/drm/exynos/exynos_drm_dpi.c       |  9 ++-
>>  drivers/gpu/drm/exynos/exynos_drm_dsi.c       |  7 +-
>>  drivers/gpu/drm/exynos/exynos_drm_fb.c        |  9 ++-
>>  drivers/gpu/drm/exynos/exynos_drm_fbdev.c     | 26 ++++---
>>  drivers/gpu/drm/exynos/exynos_drm_fimc.c      | 97 ++++++++++++++-------------
>>  drivers/gpu/drm/exynos/exynos_drm_fimd.c      | 48 +++++++------
>>  drivers/gpu/drm/exynos/exynos_drm_g2d.c       | 51 +++++++-------
>>  drivers/gpu/drm/exynos/exynos_drm_gem.c       | 35 +++++-----
>>  drivers/gpu/drm/exynos/exynos_drm_gsc.c       | 72 ++++++++++----------
>>  drivers/gpu/drm/exynos/exynos_drm_ipp.c       | 71 ++++++++++++--------
>>  drivers/gpu/drm/exynos/exynos_drm_ipp.h       |  9 +--
>>  drivers/gpu/drm/exynos/exynos_drm_mic.c       | 29 ++++----
>>  drivers/gpu/drm/exynos/exynos_drm_plane.c     | 15 +++--
>>  drivers/gpu/drm/exynos/exynos_drm_rotator.c   |  5 +-
>>  drivers/gpu/drm/exynos/exynos_drm_scaler.c    |  5 +-
>>  drivers/gpu/drm/exynos/exynos_drm_vidi.c      | 49 ++++++++------
>>  drivers/gpu/drm/exynos/exynos_hdmi.c          | 75 ++++++++++++---------
>>  drivers/gpu/drm/exynos/exynos_mixer.c         | 43 +++++++-----
>>  22 files changed, 400 insertions(+), 298 deletions(-)
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/dri-devel
> 
>