diff options
author | Felipe Balbi <balbi@ti.com> | 2014-04-23 10:58:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-04-24 19:16:33 -0400 |
commit | 5b6acc79252e65a2bc3181a55d45c8e7b6f7876c (patch) | |
tree | 884b98f9d36d51fe7dbfd88ca4b975f0ec206a81 | |
parent | bd5dc09f557547399cd44d0a1224df7ff64e4a6b (diff) |
tty: serial: add missing braces
per CodingStyle we should have those braces, no
functional changes.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/omap-serial.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 837f6c1c8e7a..f456f461dd02 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c | |||
@@ -1694,8 +1694,10 @@ static int serial_omap_probe(struct platform_device *pdev) | |||
1694 | omap_up_info->DTR_present) { | 1694 | omap_up_info->DTR_present) { |
1695 | up->DTR_gpio = omap_up_info->DTR_gpio; | 1695 | up->DTR_gpio = omap_up_info->DTR_gpio; |
1696 | up->DTR_inverted = omap_up_info->DTR_inverted; | 1696 | up->DTR_inverted = omap_up_info->DTR_inverted; |
1697 | } else | 1697 | } else { |
1698 | up->DTR_gpio = -EINVAL; | 1698 | up->DTR_gpio = -EINVAL; |
1699 | } | ||
1700 | |||
1699 | up->DTR_active = 0; | 1701 | up->DTR_active = 0; |
1700 | 1702 | ||
1701 | up->dev = &pdev->dev; | 1703 | up->dev = &pdev->dev; |
@@ -1757,6 +1759,7 @@ static int serial_omap_probe(struct platform_device *pdev) | |||
1757 | platform_set_drvdata(pdev, up); | 1759 | platform_set_drvdata(pdev, up); |
1758 | if (omap_up_info->autosuspend_timeout == 0) | 1760 | if (omap_up_info->autosuspend_timeout == 0) |
1759 | omap_up_info->autosuspend_timeout = -1; | 1761 | omap_up_info->autosuspend_timeout = -1; |
1762 | |||
1760 | device_init_wakeup(up->dev, true); | 1763 | device_init_wakeup(up->dev, true); |
1761 | pm_runtime_use_autosuspend(&pdev->dev); | 1764 | pm_runtime_use_autosuspend(&pdev->dev); |
1762 | pm_runtime_set_autosuspend_delay(&pdev->dev, | 1765 | pm_runtime_set_autosuspend_delay(&pdev->dev, |