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 <marek.vasut+renesas@mailbox.org>
This commit is contained in:
Marek Vasut
2025-09-06 02:00:53 +02:00
committed by Tom Rini
parent 7be74f63f7
commit 27fc6a67a4

View File

@@ -9,7 +9,7 @@
#include <dm.h>
#include <thermal.h>
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;