ds2760_battery: cleanups in ds2760_battery_probe()
Removed struct ds2760_platform_data which wasn't defined anywhere. Indentation cleanups. Signed-off-by: Daniel Mack <daniel@caiaq.de> Cc: Szabolcs Gyurko <szabolcs.gyurko@tlt.hu> Acked-by: Matt Reimer <mreimer@vpop.net> Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
This commit is contained in:
parent
ccc0d38ec1
commit
ae9fb6e814
|
@ -344,7 +344,6 @@ static int ds2760_battery_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
struct ds2760_device_info *di;
|
struct ds2760_device_info *di;
|
||||||
struct ds2760_platform_data *pdata;
|
|
||||||
|
|
||||||
di = kzalloc(sizeof(*di), GFP_KERNEL);
|
di = kzalloc(sizeof(*di), GFP_KERNEL);
|
||||||
if (!di) {
|
if (!di) {
|
||||||
|
@ -354,7 +353,6 @@ static int ds2760_battery_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
platform_set_drvdata(pdev, di);
|
platform_set_drvdata(pdev, di);
|
||||||
|
|
||||||
pdata = pdev->dev.platform_data;
|
|
||||||
di->dev = &pdev->dev;
|
di->dev = &pdev->dev;
|
||||||
di->w1_dev = pdev->dev.parent;
|
di->w1_dev = pdev->dev.parent;
|
||||||
di->bat.name = dev_name(&pdev->dev);
|
di->bat.name = dev_name(&pdev->dev);
|
||||||
|
|
Loading…
Reference in New Issue