aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/ab8500_fg.c
diff options
context:
space:
mode:
authorAnton Vorontsov <anton.vorontsov@linaro.org>2012-03-14 04:38:32 +0400
committerAnton Vorontsov <anton.vorontsov@linaro.org>2012-03-26 20:41:10 +0400
commit450ceb2b23ed0feba8c1238f52a1d3feacd5379d (patch)
tree47749b9fe2189e7f1a8d18653db6eedd43a51e5c /drivers/power/ab8500_fg.c
parentab8500_btemp: Get rid of 'enum adc_therm' (diff)
downloadlinux-dev-450ceb2b23ed0feba8c1238f52a1d3feacd5379d.tar.xz
linux-dev-450ceb2b23ed0feba8c1238f52a1d3feacd5379d.zip
ab8500_fg: Get rid of 'struct v_to_cap'
The struct is duplicated, plus when used it causes the following warnings: CHECK drivers/power/ab8500_fg.c ab8500_fg.c:818:13: warning: incorrect type in assignment (different base types) ab8500_fg.c:818:13: expected struct v_to_cap *tbl ab8500_fg.c:818:13: got struct abx500_v_to_cap *const v_to_cap_tbl CC drivers/power/ab8500_fg.o ab8500_fg.c: In function 'ab8500_fg_volt_to_capacity': ab8500_fg.c:818:6: warning: assignment from incompatible pointer type [enabled by default] Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power/ab8500_fg.c')
-rw-r--r--drivers/power/ab8500_fg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/ab8500_fg.c b/drivers/power/ab8500_fg.c
index 41ccb70d4018..180c21ad6800 100644
--- a/drivers/power/ab8500_fg.c
+++ b/drivers/power/ab8500_fg.c
@@ -812,7 +812,7 @@ static int ab8500_fg_bat_voltage(struct ab8500_fg *di)
static int ab8500_fg_volt_to_capacity(struct ab8500_fg *di, int voltage)
{
int i, tbl_size;
- struct v_to_cap *tbl;
+ struct abx500_v_to_cap *tbl;
int cap = 0;
tbl = di->bat->bat_type[di->bat->batt_id].v_to_cap_tbl,