On Mon, Oct 03, 2016 at 07:40:44AM -0700, Andrey Smirnov wrote: > Port of_clk_set_defautls() from Linux kernel in order to support DT > configurations that require it (e. g. Vybrid). s/of_clk_set_defautls/of_clk_set_defaults/ here and in the subject. > diff --git a/include/linux/clk/clk-conf.h b/include/linux/clk/clk-conf.h > new file mode 100644 > index 0000000..2c0a39e > --- /dev/null > +++ b/include/linux/clk/clk-conf.h > @@ -0,0 +1,22 @@ > +/* > + * Copyright (C) 2014 Samsung Electronics Co., Ltd. > + * Sylwester Nawrocki <s.nawrocki@xxxxxxxxxxx> > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License version 2 as > + * published by the Free Software Foundation. > + */ > + > +#include <linux/types.h> > + > +struct device_node; > + > +#if defined(CONFIG_OFTREE) && defined(CONFIG_COMMON_CLK) > +int of_clk_set_defaults(struct device_node *node, bool clk_supplier); > +#else > +static inline int of_clk_set_defaults(struct device_node *node, > + bool clk_supplier) > +{ > + return 0; > +} > +#endif We shouldn't need this static inline variant. The caller already exists for OF enabled builds only. Sascha > -- > 2.5.5 > > > _______________________________________________ > barebox mailing list > barebox@xxxxxxxxxxxxxxxxxxx > http://lists.infradead.org/mailman/listinfo/barebox > -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox