From: Marek Vasut Date: Sat, 6 Sep 2025 00:00:53 +0000 (+0200) Subject: thermal: sandbox: Staticize sandbox_thermal_get_temp() X-Git-Tag: v2026.01-rc1~72^2~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27fc6a67a4ca0ab565a1135a30b1e132de3bbed8;p=thirdparty%2Fu-boot.git 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 --- 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;