From: Paul Burton Date: Thu, 8 Sep 2016 06:47:28 +0000 (+0100) Subject: clk: Use dummy clk_get_by_* functions when CONFIG_CLK is disabled X-Git-Tag: KARO-TXSD-2017-03-15~127^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3f96f87520c22efe4a8b43f45f1b2011da50dc06;p=karo-tx-uboot.git clk: Use dummy clk_get_by_* functions when CONFIG_CLK is disabled 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 Reviewed-by: Simon Glass --- diff --git a/include/clk.h b/include/clk.h index dc18b0310a..9b2452268d 100644 --- a/include/clk.h +++ b/include/clk.h @@ -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);