diff options
Diffstat (limited to 'fs/fat/inode.c')
-rw-r--r-- | fs/fat/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index e7344cb20..85cc4e1a6 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -729,11 +729,11 @@ static int is_exec(char *extension) return 0; } -static int fat_writepage(struct file *file, struct dentry *dentry, struct page *page) +static int fat_writepage(struct file *file, struct page *page) { return block_write_full_page(page,fat_get_block); } -static int fat_readpage(struct dentry *dentry, struct page *page) +static int fat_readpage(struct file *file, struct page *page) { return block_read_full_page(page,fat_get_block); } |