regulator: export of_get_regulator_init_data
authorAxel Lin <axel.lin@gmail.com>
Sat, 26 Nov 2011 10:50:58 +0000 (18:50 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sun, 27 Nov 2011 11:29:21 +0000 (11:29 +0000)
of_get_regulator_init_data is called in drivers/regulator/fixed.c
which could be a module.

Export of_get_regulator_init_data to fix below build error:
ERROR: "of_get_regulator_init_data" [drivers/regulator/fixed.ko] undefined!
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2

Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/of_regulator.c

index 76673c784ab8e92612ce1b6bef790707c52da9fb..acd7045d16017328f2e6107320d6566b80584b80 100644 (file)
@@ -10,6 +10,7 @@
  * (at your option) any later version.
  */
 
+#include <linux/module.h>
 #include <linux/slab.h>
 #include <linux/of.h>
 #include <linux/regulator/machine.h>
@@ -79,3 +80,4 @@ struct regulator_init_data *of_get_regulator_init_data(struct device *dev)
        of_get_regulation_constraints(dev->of_node, &init_data);
        return init_data;
 }
+EXPORT_SYMBOL_GPL(of_get_regulator_init_data);
This page took 0.047508 seconds and 5 git commands to generate.