]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
clk: Use dummy clk_get_by_* functions when CONFIG_CLK is disabled
authorPaul Burton <paul.burton@imgtec.com>
Thu, 8 Sep 2016 06:47:28 +0000 (07:47 +0100)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Wed, 21 Sep 2016 13:04:32 +0000 (15:04 +0200)
The implementations of clk_get_by_index & clk_get_by_name are only
available when CONFIG_CLK is enabled. Provide the dummies when this is
not the case in order to avoid build failures.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
include/clk.h

index dc18b0310a4eea139095449901f3c8fe3faac05d..9b2452268d40ebde5062fb9c79e97888e7e65f81 100644 (file)
@@ -59,7 +59,7 @@ struct clk {
        unsigned long id;
 };
 
-#if CONFIG_IS_ENABLED(OF_CONTROL)
+#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
 struct phandle_2_cell;
 int clk_get_by_index_platdata(struct udevice *dev, int index,
                              struct phandle_2_cell *cells, struct clk *clk);