aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <[email protected]>2015-01-28 11:09:20 -0700
committerJens Axboe <[email protected]>2015-01-28 11:09:20 -0700
commit706a4e5a120aa40b31a22a4ad0cdd738d78a91a3 (patch)
tree1aefd3eaef4493d4a91f8d477747dabaec3de477
parentb520252aa287b14e1f39a51e20051775b273b82a (diff)
mtd: export new mtd_mmap_capabilities
The recently added mtd_mmap_capabilities can be used from loadable modules, in particular romfs, but is not exported, so we get ERROR: "mtd_mmap_capabilities" [fs/romfs/romfs.ko] undefined! This adds the missing export. Signed-off-by: Arnd Bergmann <[email protected]> Fixes: b4caecd48005f ("fs: introduce f_op->mmap_capabilities for nommu mmap support") Acked-by: Christoph Hellwig <[email protected]> Acked-by: Brian Norris <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--drivers/mtd/mtdcore.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index ff38a1df22f7..0ec4d6ea1e4b 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -353,6 +353,7 @@ unsigned mtd_mmap_capabilities(struct mtd_info *mtd)
return NOMMU_MAP_COPY;
}
}
+EXPORT_SYMBOL_GPL(mtd_mmap_capabilities);
#endif
/**