Nathan Chancellor d0952ce316 drm/mediatek: Fix backport issue in mtk_drm_gem_prime_vmap()
When building with clang:

  drivers/gpu/drm/mediatek/mtk_drm_gem.c:255:10: error: incompatible integer to pointer conversion returning 'int' from a function with result type 'void *' [-Wint-conversion]
    255 |                 return -ENOMEM;
        |                        ^~~~~~~
  1 error generated.

GCC reports the same issue as a warning, rather than an error.

Prior to commit 7e542ff8b463 ("drm/mediatek: Use struct dma_buf_map in
GEM vmap ops"), this function returned a pointer rather than an integer.
This function is indirectly called in drm_gem_vmap(), which treats NULL
as -ENOMEM through an error pointer. Return NULL in this block to
resolve the warning but keep the same end result.

Fixes: 43f561e809aa ("drm/mediatek: Fix potential memory leak if vmap() fail")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2023-10-10 21:53:36 +02:00
..
2023-03-11 16:40:21 +01:00
2023-09-19 12:20:24 +02:00
2020-08-11 11:58:31 +10:00
2020-08-06 14:27:31 -07:00
2023-05-17 11:47:38 +02:00
2020-08-25 11:00:02 +02:00
2020-09-21 10:45:08 +02:00
2022-10-26 13:25:25 +02:00