diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 10:10:15 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:18 -0500 |
commit | 04c601bfa4cb29c968dcb66e44c799c9c01d8675 (patch) | |
tree | 27fd5aaf5b6174a7f118f88ddbdb4eee3581ef56 /fs/romfs/mmap-nommu.c | |
parent | 7219778ad9c18cc2c05c7fca0abe026afbc19dfb (diff) |
mtd: introduce mtd_get_unmapped_area interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'fs/romfs/mmap-nommu.c')
-rw-r--r-- | fs/romfs/mmap-nommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/romfs/mmap-nommu.c b/fs/romfs/mmap-nommu.c index eed99428f104..d5168e8e7dcb 100644 --- a/fs/romfs/mmap-nommu.c +++ b/fs/romfs/mmap-nommu.c | |||
@@ -53,7 +53,7 @@ static unsigned long romfs_get_unmapped_area(struct file *file, | |||
53 | if (offset > mtd->size - len) | 53 | if (offset > mtd->size - len) |
54 | return (unsigned long) -EINVAL; | 54 | return (unsigned long) -EINVAL; |
55 | 55 | ||
56 | return mtd->get_unmapped_area(mtd, len, offset, flags); | 56 | return mtd_get_unmapped_area(mtd, len, offset, flags); |
57 | } | 57 | } |
58 | 58 | ||
59 | cant_map_directly: | 59 | cant_map_directly: |