]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mtd: introduce mtd_get_unmapped_area interface
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Fri, 23 Dec 2011 15:10:15 +0000 (17:10 +0200)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 9 Jan 2012 18:25:18 +0000 (18:25 +0000)
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/mtd/mtdchar.c
drivers/mtd/mtdconcat.c
drivers/mtd/mtdpart.c
fs/romfs/mmap-nommu.c
include/linux/mtd/mtd.h

index 41d64ff4c2522958451e468e71b7cba2713919dd..c51f04a00afb7643438115956bdea4555678ec02 100644 (file)
@@ -1135,7 +1135,7 @@ static unsigned long mtdchar_get_unmapped_area(struct file *file,
                if (offset > mtd->size - len)
                        return (unsigned long) -EINVAL;
 
-               return mtd->get_unmapped_area(mtd, len, offset, flags);
+               return mtd_get_unmapped_area(mtd, len, offset, flags);
        }
 
        /* can't map directly */
index 76123bd49314b929e9e9391d5fd0f639e45d84f0..b3895cf20bb26948123283d6aee88038d88e0531 100644 (file)
@@ -726,8 +726,8 @@ static unsigned long concat_get_unmapped_area(struct mtd_info *mtd,
                        return (unsigned long) -EINVAL;
 
                if (subdev->get_unmapped_area)
-                       return subdev->get_unmapped_area(subdev, len, offset,
-                                                        flags);
+                       return mtd_get_unmapped_area(subdev, len, offset,
+                                                    flags);
 
                break;
        }
index b09624a5497c90fa5af0d4f3bb02c11dd0a75970..55a9cb544fc1e6170eb79aa4bdd2a4948d735546 100644 (file)
@@ -108,8 +108,7 @@ static unsigned long part_get_unmapped_area(struct mtd_info *mtd,
        struct mtd_part *part = PART(mtd);
 
        offset += part->offset;
-       return part->master->get_unmapped_area(part->master, len, offset,
-                                              flags);
+       return mtd_get_unmapped_area(part->master, len, offset, flags);
 }
 
 static int part_read_oob(struct mtd_info *mtd, loff_t from,
index eed99428f1046d6a3dbd6191340d9d70e18b7ce0..d5168e8e7dcb1ecd73279f79209b721fd72cf113 100644 (file)
@@ -53,7 +53,7 @@ static unsigned long romfs_get_unmapped_area(struct file *file,
                if (offset > mtd->size - len)
                        return (unsigned long) -EINVAL;
 
-               return mtd->get_unmapped_area(mtd, len, offset, flags);
+               return mtd_get_unmapped_area(mtd, len, offset, flags);
        }
 
 cant_map_directly:
index a7d22b7fcb4c7ee25253b64f5d4deefe89663f80..f38e8276b40834d58f98c2d0157075536f5d55a2 100644 (file)
@@ -178,11 +178,6 @@ struct mtd_info {
        int (*point) (struct mtd_info *mtd, loff_t from, size_t len,
                      size_t *retlen, void **virt, resource_size_t *phys);
        void (*unpoint) (struct mtd_info *mtd, loff_t from, size_t len);
-
-       /* Allow NOMMU mmap() to directly map the device (if not NULL)
-        * - return the address to which the offset maps
-        * - return -ENOSYS to indicate refusal to do the mapping
-        */
        unsigned long (*get_unmapped_area) (struct mtd_info *mtd,
                                            unsigned long len,
                                            unsigned long offset,
@@ -293,6 +288,19 @@ static inline void mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
        return mtd->unpoint(mtd, from, len);
 }
 
+/*
+ * Allow NOMMU mmap() to directly map the device (if not NULL)
+ * - return the address to which the offset maps
+ * - return -ENOSYS to indicate refusal to do the mapping
+ */
+static inline unsigned long mtd_get_unmapped_area(struct mtd_info *mtd,
+                                                 unsigned long len,
+                                                 unsigned long offset,
+                                                 unsigned long flags)
+{
+       return mtd->get_unmapped_area(mtd, len, offset, flags);
+}
+
 static inline struct mtd_info *dev_to_mtd(struct device *dev)
 {
        return dev ? dev_get_drvdata(dev) : NULL;