Skip to content

Commit

Permalink
drivers: dma-coherent: use vma_pages().
Browse files Browse the repository at this point in the history
Replace explicit computation of vma page count by a call to
vma_pages()

Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Muhammad Falak R Wani authored and Greg Kroah-Hartman committed Aug 31, 2016
1 parent 03aca7b commit e688f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/base/dma-coherent.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ int dma_mmap_from_coherent(struct device *dev, struct vm_area_struct *vma,
(mem->virt_base + (mem->size << PAGE_SHIFT))) {
unsigned long off = vma->vm_pgoff;
int start = (vaddr - mem->virt_base) >> PAGE_SHIFT;
int user_count = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
int user_count = vma_pages(vma);
int count = size >> PAGE_SHIFT;

*ret = -ENXIO;
Expand Down

0 comments on commit e688f14

Please sign in to comment.