diff options
| author | Adrian Bunk <[email protected]> | 2007-05-08 00:37:38 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-05-08 11:15:26 -0700 |
| commit | 7bf1ea33ad70cf49638092367d52859fbbc44fee (patch) | |
| tree | a49c31d60a6aff5f5e8bdca25af0b534dc46326b | |
| parent | 60b59beafba875aef6d378078bce0baf2287ae14 (diff) | |
make fb_deferred_io_mkwrite() static
Signed-off-by: Adrian Bunk <[email protected]>
Cc: Jaya Kumar <[email protected]>
Cc: Antonino Daplas <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | drivers/video/fb_defio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fb_defio.c b/drivers/video/fb_defio.c index cc780f4e183d..65f4e6ee7f94 100644 --- a/drivers/video/fb_defio.c +++ b/drivers/video/fb_defio.c @@ -48,8 +48,8 @@ static struct page* fb_deferred_io_nopage(struct vm_area_struct *vma, } /* vm_ops->page_mkwrite handler */ -int fb_deferred_io_mkwrite(struct vm_area_struct *vma, - struct page *page) +static int fb_deferred_io_mkwrite(struct vm_area_struct *vma, + struct page *page) { struct fb_info *info = vma->vm_private_data; struct fb_deferred_io *fbdefio = info->fbdefio; |