Skip to content

Commit

Permalink
drm/ttm: Remove explicit typecasts of vm_private_data
Browse files Browse the repository at this point in the history
The explicit typcasts are meaningless, so remove them.

Suggested-by: Matthew Wilcox <[email protected]>
Signed-off-by: Thomas Hellstrom <[email protected]>
Reviewed-by: Christian König <[email protected]>
  • Loading branch information
thomashvmw committed Nov 6, 2019
1 parent cea35f5 commit 13f8a61
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions drivers/gpu/drm/ttm/ttm_bo_vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ static unsigned long ttm_bo_io_mem_pfn(struct ttm_buffer_object *bo,
static vm_fault_t ttm_bo_vm_fault(struct vm_fault *vmf)
{
struct vm_area_struct *vma = vmf->vma;
struct ttm_buffer_object *bo = (struct ttm_buffer_object *)
vma->vm_private_data;
struct ttm_buffer_object *bo = vma->vm_private_data;
struct ttm_bo_device *bdev = bo->bdev;
unsigned long page_offset;
unsigned long page_last;
Expand Down Expand Up @@ -300,8 +299,7 @@ static vm_fault_t ttm_bo_vm_fault(struct vm_fault *vmf)

static void ttm_bo_vm_open(struct vm_area_struct *vma)
{
struct ttm_buffer_object *bo =
(struct ttm_buffer_object *)vma->vm_private_data;
struct ttm_buffer_object *bo = vma->vm_private_data;

WARN_ON(bo->bdev->dev_mapping != vma->vm_file->f_mapping);

Expand All @@ -310,7 +308,7 @@ static void ttm_bo_vm_open(struct vm_area_struct *vma)

static void ttm_bo_vm_close(struct vm_area_struct *vma)
{
struct ttm_buffer_object *bo = (struct ttm_buffer_object *)vma->vm_private_data;
struct ttm_buffer_object *bo = vma->vm_private_data;

ttm_bo_put(bo);
vma->vm_private_data = NULL;
Expand Down

0 comments on commit 13f8a61

Please sign in to comment.