summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/opp3xxx_data.c
diff options
context:
space:
mode:
authorMenon, Nishanth2011-01-05 21:49:35 +0100
committerKevin Hilman2011-03-10 01:15:49 +0100
commiteb05ead90ddb2a4e51d34f6c25f01c2e0653da59 (patch)
tree3131d007a19486b00b96ee4c64acb9af3a6ed453 /arch/arm/mach-omap2/opp3xxx_data.c
parentOMAP3630: PM: don't warn the user with a trace in case of PM34XX_ERRATUM (diff)
downloadkernel-qcow2-linux-eb05ead90ddb2a4e51d34f6c25f01c2e0653da59.tar.gz
kernel-qcow2-linux-eb05ead90ddb2a4e51d34f6c25f01c2e0653da59.tar.xz
kernel-qcow2-linux-eb05ead90ddb2a4e51d34f6c25f01c2e0653da59.zip
OMAP3|4: OPP: make omapx_opp_init non-static
omap3 and omap4 opp_init should be made non-static to allow for platform specific opp table tweaking. making these static conflicts with the definition in pm.h(global) as well. we include pm.h as well to ensure that there are no such prototype conflicts with actual implementation in the future. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/opp3xxx_data.c')
-rw-r--r--arch/arm/mach-omap2/opp3xxx_data.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/opp3xxx_data.c b/arch/arm/mach-omap2/opp3xxx_data.c
index 0486fce8a92c..fd3a1af8d51e 100644
--- a/arch/arm/mach-omap2/opp3xxx_data.c
+++ b/arch/arm/mach-omap2/opp3xxx_data.c
@@ -21,6 +21,7 @@
#include <plat/cpu.h>
#include "omap_opp_data.h"
+#include "pm.h"
static struct omap_opp_def __initdata omap34xx_opp_def_list[] = {
/* MPU OPP1 */
@@ -88,7 +89,7 @@ static struct omap_opp_def __initdata omap36xx_opp_def_list[] = {
/**
* omap3_opp_init() - initialize omap3 opp table
*/
-static int __init omap3_opp_init(void)
+int __init omap3_opp_init(void)
{
int r = -ENODEV;