Re: [PATCH] drm/v3d: replace open-coded implementation of drm_gem_object_lookup

2023-01-03 Thread Melissa Wen
On 12/28, Melissa Wen wrote: > On 12/27, Maíra Canal wrote: > > As v3d_submit_tfu_ioctl() performs the same steps as > > drm_gem_object_lookup(), > > replace the open-code implementation in v3d with its DRM core equivalent. > > > > Signed-off-by: Maíra Canal > > --- > > drivers/gpu/drm/v3d/v3d_

Re: [PATCH] drm/v3d: replace open-coded implementation of drm_gem_object_lookup

2022-12-28 Thread Melissa Wen
On 12/27, Maíra Canal wrote: > As v3d_submit_tfu_ioctl() performs the same steps as drm_gem_object_lookup(), > replace the open-code implementation in v3d with its DRM core equivalent. > > Signed-off-by: Maíra Canal > --- > drivers/gpu/drm/v3d/v3d_gem.c | 7 +-- > 1 file changed, 1 insertion

[PATCH] drm/v3d: replace open-coded implementation of drm_gem_object_lookup

2022-12-27 Thread Maíra Canal
As v3d_submit_tfu_ioctl() performs the same steps as drm_gem_object_lookup(), replace the open-code implementation in v3d with its DRM core equivalent. Signed-off-by: Maíra Canal --- drivers/gpu/drm/v3d/v3d_gem.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/g