Re: [PATCH] Remove custom dumb_map_offset implementation in msm driver

2023-11-14 Thread Dmitry Baryshkov
On Tue, 14 Nov 2023 at 15:28, Dipam Turkar wrote: > > Make msm use drm_gem_create_map_offset() instead of its custom > implementation for associating GEM object with a fake offset. Since, > we already have this generic implementation, we don't need the custom > implementation and it is better to s

[PATCH] Remove custom dumb_map_offset implementation in msm driver

2023-11-14 Thread Dipam Turkar
Make msm use drm_gem_create_map_offset() instead of its custom implementation for associating GEM object with a fake offset. Since, we already have this generic implementation, we don't need the custom implementation and it is better to standardize the code for GEM based drivers. Signed-off-by: Di