Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2-rc3 19 lines 437 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2014 Samsung Electronics Co., Ltd. 4 * Sylwester Nawrocki <s.nawrocki@samsung.com> 5 */ 6 7#include <linux/types.h> 8 9struct device_node; 10 11#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) 12int of_clk_set_defaults(struct device_node *node, bool clk_supplier); 13#else 14static inline int of_clk_set_defaults(struct device_node *node, 15 bool clk_supplier) 16{ 17 return 0; 18} 19#endif