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 v6.5 20 lines 422 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2019 BayLibre, SAS. 4 * Author: Neil Armstrong <narmstrong@baylibre.com> 5 */ 6 7#ifndef __MESON_CLK_CPU_DYNDIV_H 8#define __MESON_CLK_CPU_DYNDIV_H 9 10#include <linux/clk-provider.h> 11#include "parm.h" 12 13struct meson_clk_cpu_dyndiv_data { 14 struct parm div; 15 struct parm dyn; 16}; 17 18extern const struct clk_ops meson_clk_cpu_dyndiv_ops; 19 20#endif /* __MESON_CLK_CPU_DYNDIV_H */