From 27fc6a67a4ca0ab565a1135a30b1e132de3bbed8 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 6 Sep 2025 02:00:53 +0200 Subject: [PATCH] thermal: sandbox: Staticize sandbox_thermal_get_temp() Make sandbox_thermal_get_temp() static, since this is not called outside of the driver. No functional change. Signed-off-by: Marek Vasut --- drivers/thermal/thermal_sandbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/thermal_sandbox.c b/drivers/thermal/thermal_sandbox.c index 9af0d0247cb..b7c567d76cd 100644 --- a/drivers/thermal/thermal_sandbox.c +++ b/drivers/thermal/thermal_sandbox.c @@ -9,7 +9,7 @@ #include #include -int sandbox_thermal_get_temp(struct udevice *dev, int *temp) +static int sandbox_thermal_get_temp(struct udevice *dev, int *temp) { /* Simply return 100 deg C */ *temp = 100; -- 2.47.3