Commit 8ace98df authored by Guenter Roeck's avatar Guenter Roeck Committed by Dmitry Torokhov

Input: tps65218-pwrbutton - drop unnecessary call to platform_set_drvdata

There is no call to platform_get_drvdata() or dev_get_drvdata().
Drop the unnecessary call to platform_set_drvdata().

Also use existing variable 'dev' instead of dereferencing it several times.
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent aa45590a
...@@ -95,7 +95,7 @@ static int tps6521x_pb_probe(struct platform_device *pdev) ...@@ -95,7 +95,7 @@ static int tps6521x_pb_probe(struct platform_device *pdev)
int error; int error;
int irq; int irq;
match = of_match_node(of_tps6521x_pb_match, pdev->dev.of_node); match = of_match_node(of_tps6521x_pb_match, dev->of_node);
if (!match) if (!match)
return -ENXIO; return -ENXIO;
...@@ -118,10 +118,9 @@ static int tps6521x_pb_probe(struct platform_device *pdev) ...@@ -118,10 +118,9 @@ static int tps6521x_pb_probe(struct platform_device *pdev)
input_set_capability(idev, EV_KEY, KEY_POWER); input_set_capability(idev, EV_KEY, KEY_POWER);
pwr->regmap = dev_get_regmap(pdev->dev.parent, NULL); pwr->regmap = dev_get_regmap(dev->parent, NULL);
pwr->dev = dev; pwr->dev = dev;
pwr->idev = idev; pwr->idev = idev;
platform_set_drvdata(pdev, pwr);
device_init_wakeup(dev, true); device_init_wakeup(dev, true);
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
...@@ -136,8 +135,7 @@ static int tps6521x_pb_probe(struct platform_device *pdev) ...@@ -136,8 +135,7 @@ static int tps6521x_pb_probe(struct platform_device *pdev)
IRQF_ONESHOT, IRQF_ONESHOT,
pwr->data->name, pwr); pwr->data->name, pwr);
if (error) { if (error) {
dev_err(dev, "failed to request IRQ #%d: %d\n", dev_err(dev, "failed to request IRQ #%d: %d\n", irq, error);
irq, error);
return error; return error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment