|
@@ -131,6 +131,7 @@ struct ab8500_btemp *ab8500_btemp_get(void)
|
|
|
|
|
|
return btemp;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ab8500_btemp_get);
|
|
|
|
|
|
/**
|
|
|
* ab8500_btemp_batctrl_volt_to_res() - convert batctrl voltage to resistance
|
|
@@ -815,7 +816,7 @@ static void ab8500_btemp_periodic(struct ab8500_btemp *di,
|
|
|
*
|
|
|
* Returns battery temperature
|
|
|
*/
|
|
|
-static int ab8500_btemp_get_temp(struct ab8500_btemp *di)
|
|
|
+int ab8500_btemp_get_temp(struct ab8500_btemp *di)
|
|
|
{
|
|
|
int temp = 0;
|
|
|
|
|
@@ -851,6 +852,7 @@ static int ab8500_btemp_get_temp(struct ab8500_btemp *di)
|
|
|
}
|
|
|
return temp;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ab8500_btemp_get_temp);
|
|
|
|
|
|
/**
|
|
|
* ab8500_btemp_get_batctrl_temp() - get the temperature
|
|
@@ -862,6 +864,7 @@ int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp *btemp)
|
|
|
{
|
|
|
return btemp->bat_temp * 1000;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ab8500_btemp_get_batctrl_temp);
|
|
|
|
|
|
/**
|
|
|
* ab8500_btemp_get_property() - get the btemp properties
|