diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-09-08 07:47:28 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-09-21 15:04:32 +0200 |
commit | 3f96f87520c22efe4a8b43f45f1b2011da50dc06 (patch) | |
tree | e5a4a9ea3f28069427305dc3b6c0dc07c42a13fd | |
parent | 639200f6a0dcfe67e4c923b6108703e192946388 (diff) | |
download | u-boot-imx-3f96f87520c22efe4a8b43f45f1b2011da50dc06.zip u-boot-imx-3f96f87520c22efe4a8b43f45f1b2011da50dc06.tar.gz u-boot-imx-3f96f87520c22efe4a8b43f45f1b2011da50dc06.tar.bz2 |
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 <paul.burton@imgtec.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clk.h b/include/clk.h index dc18b03..9b24522 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); |