mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
test: dm: clk_ccf: fix building error
Fix unused variable error produced by building tests
Fixes: d3061824
(test: dm: clk_ccf: test ccf_clk_ops)
Signed-off-by: Yang Xiwen <forbidden405@outlook.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Link: https://lore.kernel.org/r/20231216-b4-fix_build-v1-1-b8e79c94744f@outlook.com
This commit is contained in:
parent
d306182439
commit
97d65b32d7
1 changed files with 2 additions and 1 deletions
|
@ -18,11 +18,12 @@
|
|||
/* Tests for Common Clock Framework driver */
|
||||
static int dm_test_clk_ccf(struct unit_test_state *uts)
|
||||
{
|
||||
struct clk *clk, *pclk, clk_ccf;
|
||||
struct clk *clk, *pclk;
|
||||
struct udevice *dev, *test_dev;
|
||||
long long rate;
|
||||
int ret;
|
||||
#if CONFIG_IS_ENABLED(CLK_CCF)
|
||||
struct clk clk_ccf;
|
||||
const char *clkname;
|
||||
int clkid, i;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue