mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add a forward-declare of struct of_phandle_args to prevent the compiler
warning:
../include/kunit/clk.h:29:63: warning: ‘struct of_phandle_args’ declared
inside parameter list will not be visible outside of this definition or
declaration
struct clk_hw *(*get)(struct of_phandle_args *clkspec, void *data),
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20250327125214.82598-1-rf@opensource.cirrus.com
Fixes: a82fcb16d9
("clk: test: Add test managed of_clk_add_hw_provider()")
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
33 lines
1,008 B
C
33 lines
1,008 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _CLK_KUNIT_H
|
|
#define _CLK_KUNIT_H
|
|
|
|
struct clk;
|
|
struct clk_hw;
|
|
struct device;
|
|
struct device_node;
|
|
struct of_phandle_args;
|
|
struct kunit;
|
|
|
|
struct clk *
|
|
clk_get_kunit(struct kunit *test, struct device *dev, const char *con_id);
|
|
struct clk *
|
|
of_clk_get_kunit(struct kunit *test, struct device_node *np, int index);
|
|
|
|
struct clk *
|
|
clk_hw_get_clk_kunit(struct kunit *test, struct clk_hw *hw, const char *con_id);
|
|
struct clk *
|
|
clk_hw_get_clk_prepared_enabled_kunit(struct kunit *test, struct clk_hw *hw,
|
|
const char *con_id);
|
|
|
|
int clk_prepare_enable_kunit(struct kunit *test, struct clk *clk);
|
|
|
|
int clk_hw_register_kunit(struct kunit *test, struct device *dev, struct clk_hw *hw);
|
|
int of_clk_hw_register_kunit(struct kunit *test, struct device_node *node,
|
|
struct clk_hw *hw);
|
|
|
|
int of_clk_add_hw_provider_kunit(struct kunit *test, struct device_node *np,
|
|
struct clk_hw *(*get)(struct of_phandle_args *clkspec, void *data),
|
|
void *data);
|
|
|
|
#endif
|