summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap/include/mach/omap3-clock.h
diff options
context:
space:
mode:
authorSanjeev Premi <premi@ti.com>2010-12-30 19:19:58 +0530
committerSascha Hauer <s.hauer@pengutronix.de>2011-01-03 12:45:43 +0100
commit0482a9573d0712e7984eb0245900b52f721cfae6 (patch)
tree72d3f3436625d32062e45c0315c914b8936e4d84 /arch/arm/mach-omap/include/mach/omap3-clock.h
parentd77862714187ec7862bbf644c5f2d3cd122bef87 (diff)
downloadbarebox-0482a9573d0712e7984eb0245900b52f721cfae6.tar.gz
barebox-0482a9573d0712e7984eb0245900b52f721cfae6.tar.xz
omap3: Select DPLL tables based on cpu revision
This patch updates the DPLL functions to return correct DPLL table based on the cpu revision. The DPLL table for PER domain is same across all revisions, but the function signature has been updated to maintain consistency in the API definition. Signed-off-by: Sanjeev Premi <premi@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-omap/include/mach/omap3-clock.h')
-rw-r--r--arch/arm/mach-omap/include/mach/omap3-clock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-omap/include/mach/omap3-clock.h b/arch/arm/mach-omap/include/mach/omap3-clock.h
index b655fe3a4b..1b42500a98 100644
--- a/arch/arm/mach-omap/include/mach/omap3-clock.h
+++ b/arch/arm/mach-omap/include/mach/omap3-clock.h
@@ -125,10 +125,10 @@ struct dpll_param {
unsigned int m2;
};
/* External functions see omap3_clock_core.S */
-extern struct dpll_param *get_mpu_dpll_param(void);
-extern struct dpll_param *get_iva_dpll_param(void);
-extern struct dpll_param *get_core_dpll_param(void);
-extern struct dpll_param *get_per_dpll_param(void);
+extern struct dpll_param *get_mpu_dpll_param(u32);
+extern struct dpll_param *get_iva_dpll_param(u32);
+extern struct dpll_param *get_core_dpll_param(u32);
+extern struct dpll_param *get_per_dpll_param(u32);
#endif /* __ASSEMBLY__ */