diff options
author | Rajendra Nayak <rnayak@ti.com> | 2010-05-18 20:23:59 -0600 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-05-20 12:31:12 -0600 |
commit | 89e5ab26d89fda15924658866b57c967ba7507cc (patch) | |
tree | 9f7bb042f59e49c55158bb695d89e9638dc6e412 /arch/arm | |
parent | fe894d56322b10910631800b86f25f13bc64c639 (diff) | |
download | linux-89e5ab26d89fda15924658866b57c967ba7507cc.tar.gz linux-89e5ab26d89fda15924658866b57c967ba7507cc.tar.bz2 linux-89e5ab26d89fda15924658866b57c967ba7507cc.zip |
OMAP4 clock: Support clk_set_parent
Remove the hack put in place while clock framework was still not in
place for OMAP4.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-omap/clock.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index c9cd98a97abb..7190cbd92620 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c @@ -138,11 +138,6 @@ int clk_set_parent(struct clk *clk, struct clk *parent) unsigned long flags; int ret = -EINVAL; - if (cpu_is_omap44xx()) { - WARN(1, "clock: %s: not supported yet on OMAP4\n", __func__); - return 0; - } - if (clk == NULL || IS_ERR(clk) || parent == NULL || IS_ERR(parent)) return ret; |