Sfoglia il codice sorgente

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>
Rajendra Nayak 15 anni fa
parent
commit
89e5ab26d8
1 ha cambiato i file con 0 aggiunte e 5 eliminazioni
  1. 0 5
      arch/arm/plat-omap/clock.c

+ 0 - 5
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;