module: Convert symbol namespace to string literal
[linux.git] / drivers / clk / meson / meson-clkc-utils.h
blobfe6f407289496c5c4821b7c9e5a6b6e8a45068b2
1 /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
2 /*
3 * Copyright (c) 2023 Neil Armstrong <neil.armstrong@linaro.org>
4 */
6 #ifndef __MESON_CLKC_UTILS_H__
7 #define __MESON_CLKC_UTILS_H__
9 #include <linux/of_device.h>
10 #include <linux/clk-provider.h>
12 struct meson_clk_hw_data {
13 struct clk_hw **hws;
14 unsigned int num;
17 struct clk_hw *meson_clk_hw_get(struct of_phandle_args *clkspec, void *clk_hw_data);
19 #endif