Skip to content

Commit

Permalink
au1200fb: io_remap_pfn_range() sets VM_IO
Browse files Browse the repository at this point in the history
... and single return is quite sufficient to get out of function, TYVM

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Jun 29, 2013
1 parent a47df15 commit 1fca06f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/video/au1200fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1258,13 +1258,9 @@ static int au1200fb_fb_mmap(struct fb_info *info, struct vm_area_struct *vma)
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
pgprot_val(vma->vm_page_prot) |= _CACHE_MASK; /* CCA=7 */

vma->vm_flags |= VM_IO;

return io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
vma->vm_end - vma->vm_start,
vma->vm_page_prot);

return 0;
}

static void set_global(u_int cmd, struct au1200_lcd_global_regs_t *pdata)
Expand Down

0 comments on commit 1fca06f

Please sign in to comment.