mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
230b6f3a76
Let's introduce a new module called meson-clkc-utils that will contain shared utility functions for all Amlogic clock controller drivers. The first utility function is a replacement of of_clk_hw_onecell_get in order to get rid of the NR_CLKS define in all Amlogic clock drivers. The goal is to move all duplicate probe and init code in this module. [jbrunet: Fixed MODULE_LICENCE checkpatch warning] Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://lore.kernel.org/r/20230607-topic-amlogic-upstream-clkid-public-migration-v2-1-38172d17c27a@linaro.org Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
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
|