From: Yang Xiwen <forbidden405@outlook.com>
Date: Fri, 15 Dec 2023 20:21:11 +0000 (+0800)
Subject: test: dm: clk_ccf: fix building error
X-Git-Tag: v2025.01-rc5-pxa1908~743^2
X-Git-Url: http://git.dujemihanovic.xyz/img/static//%22brlog.php?a=commitdiff_plain;h=97d65b32d76cb3b8297cd8aa2c1f0caab5ab6c57;p=u-boot.git

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
---

diff --git a/test/dm/clk_ccf.c b/test/dm/clk_ccf.c
index 99481877a8..61dad8d852 100644
--- a/test/dm/clk_ccf.c
+++ b/test/dm/clk_ccf.c
@@ -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