Commit 5b6acc79 authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman

tty: serial: add missing braces

per CodingStyle we should have those braces, no
functional changes.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bd5dc09f
...@@ -1694,8 +1694,10 @@ static int serial_omap_probe(struct platform_device *pdev) ...@@ -1694,8 +1694,10 @@ static int serial_omap_probe(struct platform_device *pdev)
omap_up_info->DTR_present) { omap_up_info->DTR_present) {
up->DTR_gpio = omap_up_info->DTR_gpio; up->DTR_gpio = omap_up_info->DTR_gpio;
up->DTR_inverted = omap_up_info->DTR_inverted; up->DTR_inverted = omap_up_info->DTR_inverted;
} else } else {
up->DTR_gpio = -EINVAL; up->DTR_gpio = -EINVAL;
}
up->DTR_active = 0; up->DTR_active = 0;
up->dev = &pdev->dev; up->dev = &pdev->dev;
...@@ -1757,6 +1759,7 @@ static int serial_omap_probe(struct platform_device *pdev) ...@@ -1757,6 +1759,7 @@ static int serial_omap_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, up); platform_set_drvdata(pdev, up);
if (omap_up_info->autosuspend_timeout == 0) if (omap_up_info->autosuspend_timeout == 0)
omap_up_info->autosuspend_timeout = -1; omap_up_info->autosuspend_timeout = -1;
device_init_wakeup(up->dev, true); device_init_wakeup(up->dev, true);
pm_runtime_use_autosuspend(&pdev->dev); pm_runtime_use_autosuspend(&pdev->dev);
pm_runtime_set_autosuspend_delay(&pdev->dev, pm_runtime_set_autosuspend_delay(&pdev->dev,
......
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