mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-06 13:16:22 +00:00
20 lines
412 B
C
20 lines
412 B
C
|
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
||
|
/*
|
||
|
* Copyright (c) 2023 Neil Armstrong <neil.armstrong@linaro.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef __MESON_CLKC_UTILS_H__
|
||
|
#define __MESON_CLKC_UTILS_H__
|
||
|
|
||
|
#include <linux/of_device.h>
|
||
|
#include <linux/clk-provider.h>
|
||
|
|
||
|
struct meson_clk_hw_data {
|
||
|
struct clk_hw **hws;
|
||
|
unsigned int num;
|
||
|
};
|
||
|
|
||
|
struct clk_hw *meson_clk_hw_get(struct of_phandle_args *clkspec, void *clk_hw_data);
|
||
|
|
||
|
#endif
|