diff options
| author | Alexander Beregalov <a.beregalov@gmail.com> | 2009-06-23 09:50:06 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-07-12 16:02:10 -0400 |
| commit | 38c7dc373029e4666b17850054dd43c1c96bb264 (patch) | |
| tree | 6c6523507500f8f313c159d6b4c4362d24146d3f | |
| parent | 5e9a8bd65761bf0c1ee26d8514ef3e9ff22ee465 (diff) | |
wm97xx_batery: replace driver_data with dev_get_drvdata()
direct access of driver_data is going away.
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | drivers/power/wm97xx_battery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/wm97xx_battery.c b/drivers/power/wm97xx_battery.c index 8bde92126d34..b787335a8419 100644 --- a/drivers/power/wm97xx_battery.c +++ b/drivers/power/wm97xx_battery.c | |||
| @@ -33,14 +33,14 @@ static enum power_supply_property *prop; | |||
| 33 | 33 | ||
| 34 | static unsigned long wm97xx_read_bat(struct power_supply *bat_ps) | 34 | static unsigned long wm97xx_read_bat(struct power_supply *bat_ps) |
| 35 | { | 35 | { |
| 36 | return wm97xx_read_aux_adc(bat_ps->dev->parent->driver_data, | 36 | return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev->parent), |
| 37 | pdata->batt_aux) * pdata->batt_mult / | 37 | pdata->batt_aux) * pdata->batt_mult / |
| 38 | pdata->batt_div; | 38 | pdata->batt_div; |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | static unsigned long wm97xx_read_temp(struct power_supply *bat_ps) | 41 | static unsigned long wm97xx_read_temp(struct power_supply *bat_ps) |
| 42 | { | 42 | { |
| 43 | return wm97xx_read_aux_adc(bat_ps->dev->parent->driver_data, | 43 | return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev->parent), |
| 44 | pdata->temp_aux) * pdata->temp_mult / | 44 | pdata->temp_aux) * pdata->temp_mult / |
| 45 | pdata->temp_div; | 45 | pdata->temp_div; |
| 46 | } | 46 | } |
