mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 18:41:23 +00:00
f0b3140f4b
Take a pointer to a struct device in mtk_clk_register_cpumuxes() and propagate the same to mtk_clk_register_cpumux() => clk_hw_register(). Even though runtime pm is unlikely to be used with CPU muxes, this helps with code consistency and possibly opens to commonization of some mtk_clk_register_(x) functions. Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Reviewed-by: Chen-Yu Tsai <wenst@chromium.org> Reviewed-by: Markus Schneider-Pargmann <msp@baylibre.com> Tested-by: Miles Chen <miles.chen@mediatek.com> Link: https://lore.kernel.org/r/20230120092053.182923-5-angelogioacchino.delregno@collabora.com Tested-by: Mingming Su <mingming.su@mediatek.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
22 lines
594 B
C
22 lines
594 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015 Linaro Ltd.
|
|
* Author: Pi-Cheng Chen <pi-cheng.chen@linaro.org>
|
|
*/
|
|
|
|
#ifndef __DRV_CLK_CPUMUX_H
|
|
#define __DRV_CLK_CPUMUX_H
|
|
|
|
struct clk_hw_onecell_data;
|
|
struct device_node;
|
|
struct mtk_composite;
|
|
|
|
int mtk_clk_register_cpumuxes(struct device *dev, struct device_node *node,
|
|
const struct mtk_composite *clks, int num,
|
|
struct clk_hw_onecell_data *clk_data);
|
|
|
|
void mtk_clk_unregister_cpumuxes(const struct mtk_composite *clks, int num,
|
|
struct clk_hw_onecell_data *clk_data);
|
|
|
|
#endif /* __DRV_CLK_CPUMUX_H */
|