]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: davinci: normalize clk API
authorArnd Bergmann <arnd@arndb.de>
Tue, 28 Jan 2014 20:17:41 +0000 (21:17 +0100)
committerArnd Bergmann <arnd@arndb.de>
Thu, 27 Jul 2017 11:15:29 +0000 (13:15 +0200)
davinci still has its own clk implementation, but lacks
a clk_get_parent() helper, which can lead to link errors
in randconfig builds.

This adds the usual implementation.

Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/arm/mach-davinci/clock.c

index f5dce9b4e617df833cd210bac2fe65ac4a93b788..f77a4f7660505fe949af782e50b99c08b12a5570 100644 (file)
@@ -218,6 +218,15 @@ int clk_set_parent(struct clk *clk, struct clk *parent)
 }
 EXPORT_SYMBOL(clk_set_parent);
 
+struct clk *clk_get_parent(struct clk *clk)
+{
+       if (!clk)
+               return NULL;
+
+       return clk->parent;
+}
+EXPORT_SYMBOL(clk_get_parent);
+
 int clk_register(struct clk *clk)
 {
        if (clk == NULL || IS_ERR(clk))