Skip to content

Commit

Permalink
OMAP4 clock: Support clk_set_parent
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Rajendra Nayak authored and Paul Walmsley committed May 20, 2010
1 parent fe894d5 commit 89e5ab2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions arch/arm/plat-omap/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 89e5ab2

Please sign in to comment.