Re: [PATCH v18 05/26] drm/shmem-helper: Remove obsoleted is_iomem test

2023-11-24 Thread Maxime Ripard
On Mon, 30 Oct 2023 02:01:44 +0300, Dmitry Osipenko wrote: > Everything that uses the mapped buffer should be agnostic to is_iomem. > The only reason for the is_iomem test is that we're setting shmem->vaddr > to the returned map->vaddr. Now that the shmem->vaddr code is gone, remove > the obsoleted

Re: [PATCH v18 05/26] drm/shmem-helper: Remove obsoleted is_iomem test

2023-11-10 Thread Boris Brezillon
On Mon, 30 Oct 2023 02:01:44 +0300 Dmitry Osipenko wrote: > Everything that uses the mapped buffer should be agnostic to is_iomem. > The only reason for the is_iomem test is that we're setting shmem->vaddr > to the returned map->vaddr. Now that the shmem->vaddr code is gone, remove > the obsolete

[PATCH v18 05/26] drm/shmem-helper: Remove obsoleted is_iomem test

2023-10-29 Thread Dmitry Osipenko
Everything that uses the mapped buffer should be agnostic to is_iomem. The only reason for the is_iomem test is that we're setting shmem->vaddr to the returned map->vaddr. Now that the shmem->vaddr code is gone, remove the obsoleted is_iomem test to clean up the code. Suggested-by: Thomas Zimmerma