diff options
author | Hongbo Zhang <hongbo.zhang@linaro.org> | 2013-04-03 20:18:08 +0800 |
---|---|---|
committer | Anton Vorontsov <anton@enomsg.org> | 2013-04-16 17:32:48 -0700 |
commit | 6f780965aaf3354a3a6165d9018393a4a381b81d (patch) | |
tree | be2c9b299d8c7437b498a0882acf527d71675599 /drivers/power/ab8500_btemp.c | |
parent | a92d4c7d02d0af85b0edbf1d3c12b9e09bf1846d (diff) | |
download | linux-6f780965aaf3354a3a6165d9018393a4a381b81d.tar.gz linux-6f780965aaf3354a3a6165d9018393a4a381b81d.tar.bz2 linux-6f780965aaf3354a3a6165d9018393a4a381b81d.zip |
ab8500_btemp: Make ab8500_btemp_get* interfaces public
Make ab8500_btemp_get_temp interface public, export it and also export the
ab8500_btemp_get, ab8500_btemp_get_batctrl_temp interfaces, so that the
ab8500 hwmon driver can use them.
Signed-off-by: Hongbo Zhang <hongbo.zhang@linaro.org>
Signed-off-by: Anton Vorontsov <anton@enomsg.org>
Diffstat (limited to 'drivers/power/ab8500_btemp.c')
-rw-r--r-- | drivers/power/ab8500_btemp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/power/ab8500_btemp.c b/drivers/power/ab8500_btemp.c index a9486f1a1b5b..d412d34bf3df 100644 --- a/drivers/power/ab8500_btemp.c +++ b/drivers/power/ab8500_btemp.c @@ -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 |