Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / include / linux / clk / clk-conf.h
blobe0c362363c385126de1d90eee5e3a432fa363447
1 /*
2 * Copyright (C) 2014 Samsung Electronics Co., Ltd.
3 * Sylwester Nawrocki <s.nawrocki@samsung.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
10 #include <linux/types.h>
12 struct device_node;
14 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
15 int of_clk_set_defaults(struct device_node *node, bool clk_supplier);
16 #else
17 static inline int of_clk_set_defaults(struct device_node *node,
18 bool clk_supplier)
20 return 0;
22 #endif