summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/tegra2_clocks.c
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2011-01-14 15:06:29 -0800
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:36:55 -0800
commit3dada175f9ae7cbb5bb8de14de134a8484278984 (patch)
tree12d33f15d7ddcaeddd467db26625ce2c9ced4496 /arch/arm/mach-tegra/tegra2_clocks.c
parent804b9b28e2be62712cb4daba2112b362721dec6a (diff)
ARM: tegra: clock: Add round_rate op for shared clocks
Change-Id: Ica3f9fd9db4fe38f2c9ca3fc248526211f59c622 Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/tegra2_clocks.c')
-rw-r--r--arch/arm/mach-tegra/tegra2_clocks.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/tegra2_clocks.c b/arch/arm/mach-tegra/tegra2_clocks.c
index 00006888613b..02abd95f0c5d 100644
--- a/arch/arm/mach-tegra/tegra2_clocks.c
+++ b/arch/arm/mach-tegra/tegra2_clocks.c
@@ -1383,6 +1383,11 @@ static long tegra_clk_shared_bus_round_rate(struct clk *c, unsigned long rate)
return clk_round_rate(c->parent, rate);
}
+static long tegra_clk_shared_bus_round_rate(struct clk *c, unsigned long rate)
+{
+ return clk_round_rate(c->parent, rate);
+}
+
static int tegra_clk_shared_bus_enable(struct clk *c)
{
unsigned long flags;