On Mon, Oct 3, 2016 at 11:38 PM, Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> wrote: > 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. OK, will remove in v2. Thanks, Andrey _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox