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 /drivers/mtd/mtdconcat.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 'drivers/mtd/mtdconcat.c')
-rw-r--r-- | drivers/mtd/mtdconcat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdconcat.c b/drivers/mtd/mtdconcat.c index 76123bd49314..b3895cf20bb2 100644 --- a/drivers/mtd/mtdconcat.c +++ b/drivers/mtd/mtdconcat.c | |||
@@ -726,8 +726,8 @@ static unsigned long concat_get_unmapped_area(struct mtd_info *mtd, | |||
726 | return (unsigned long) -EINVAL; | 726 | return (unsigned long) -EINVAL; |
727 | 727 | ||
728 | if (subdev->get_unmapped_area) | 728 | if (subdev->get_unmapped_area) |
729 | return subdev->get_unmapped_area(subdev, len, offset, | 729 | return mtd_get_unmapped_area(subdev, len, offset, |
730 | flags); | 730 | flags); |
731 | 731 | ||
732 | break; | 732 | break; |
733 | } | 733 | } |