Input: twl4030-pwrbutton - use correct device for irq request

The interrupt should be requested for the platform device
and not for the input device.

Fixes: 7f9ce649d267 ("Input: twl4030-pwrbutton - simplify driver using devm_*")
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by Sebastian Reichel and committed by Dmitry Torokhov 3071e9dd e55057e8

+1 -1
+1 -1
drivers/input/misc/twl4030-pwrbutton.c
··· 70 pwr->phys = "twl4030_pwrbutton/input0"; 71 pwr->dev.parent = &pdev->dev; 72 73 - err = devm_request_threaded_irq(&pwr->dev, irq, NULL, powerbutton_irq, 74 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | 75 IRQF_ONESHOT, 76 "twl4030_pwrbutton", pwr);
··· 70 pwr->phys = "twl4030_pwrbutton/input0"; 71 pwr->dev.parent = &pdev->dev; 72 73 + err = devm_request_threaded_irq(&pdev->dev, irq, NULL, powerbutton_irq, 74 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING | 75 IRQF_ONESHOT, 76 "twl4030_pwrbutton", pwr);