summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/maps/physmap_of_versatile.c
diff options
context:
space:
mode:
authorArnd Bergmann2016-04-26 01:01:40 +0200
committerArnd Bergmann2016-04-26 01:13:55 +0200
commitc5f9d6b1379a4584b47dd80271ab3a6883f979a9 (patch)
tree5f16295cf91146e8c3d3d571d55fec91685f86eb /drivers/mtd/maps/physmap_of_versatile.c
parentsoc: brcmstb: Unmap sun_top_ctrl_base on errors (diff)
downloadkernel-qcow2-linux-c5f9d6b1379a4584b47dd80271ab3a6883f979a9.tar.gz
kernel-qcow2-linux-c5f9d6b1379a4584b47dd80271ab3a6883f979a9.tar.xz
kernel-qcow2-linux-c5f9d6b1379a4584b47dd80271ab3a6883f979a9.zip
physmap_of: ensure versatile code is reachable
With the newly added physmap_of_versatile code, we get a build error when physmap_of is in a module, because of_flash_probe_versatile is not exported: ERROR: "of_flash_probe_versatile" [drivers/mtd/maps/physmap_of.ko] undefined! This adds the export, and changes the Makefile so that the code is also put into a loadable module rather than built-in when physmap_of itself is a module. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/mtd/maps/physmap_of_versatile.c')
-rw-r--r--drivers/mtd/maps/physmap_of_versatile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/maps/physmap_of_versatile.c b/drivers/mtd/maps/physmap_of_versatile.c
index fa40539e0d7f..0f39b2a015f4 100644
--- a/drivers/mtd/maps/physmap_of_versatile.c
+++ b/drivers/mtd/maps/physmap_of_versatile.c
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
+#include <linux/export.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_address.h>
@@ -251,3 +252,4 @@ int of_flash_probe_versatile(struct platform_device *pdev,
return 0;
}
+EXPORT_SYMBOL_GPL(of_flash_probe_versatile);