thermal: tsens: Fix exported function marked as static

This fixes the following warning:

../drivers/thermal/tsens-mtc.c:25:12: warning: unused function 'tsens_mtc_reset_history_counter' [-Wunused-function]
static int tsens_mtc_reset_history_counter(unsigned int zone)
           ^

Change-Id: I4dae50719d0d366ff999bc871e55300c8157ff8e
This commit is contained in:
Sultan Alsawaf 2021-01-12 00:17:54 -08:00 committed by Hridaya Prajapati
parent eebd6b6786
commit 6f57a780a6

View file

@ -22,7 +22,7 @@ struct tsens_device *tsens_controller_is_present(void)
}
EXPORT_SYMBOL(tsens_controller_is_present);
static int tsens_mtc_reset_history_counter(unsigned int zone)
int tsens_mtc_reset_history_counter(unsigned int zone)
{
unsigned int reg_cntl, is_valid;
void __iomem *sensor_addr;