mirror of https://gitee.com/openkylin/linux.git
drivers: power: supply: goldfish_battery: Fix "line over 80 characters"
There was a line longer than 80 characters. Signed-off-by: Roman Kiryanov <rkir@google.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
e75e3a125b
commit
65ab18a1aa
|
@ -185,8 +185,9 @@ static int goldfish_battery_probe(struct platform_device *pdev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, data->irq, goldfish_battery_interrupt,
|
||||
IRQF_SHARED, pdev->name, data);
|
||||
ret = devm_request_irq(&pdev->dev, data->irq,
|
||||
goldfish_battery_interrupt,
|
||||
IRQF_SHARED, pdev->name, data);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in New Issue