mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user