Commit d969de8d authored by Roel Kluin's avatar Roel Kluin Committed by Greg Kroah-Hartman

serial: vt8500: add missing braces

Due to missing braces on an if statement, in presence of a device_node a
port was always assigned -1, regardless of any alias entries in the
device tree. Conversely, if device_node was NULL, an unitialized port
ended up being used.

This patch adds the missing braces, fixing the issues.
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Acked-by: default avatarTony Prisk <linux@prisktech.co.nz>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b4e788df
...@@ -561,12 +561,13 @@ static int vt8500_serial_probe(struct platform_device *pdev) ...@@ -561,12 +561,13 @@ static int vt8500_serial_probe(struct platform_device *pdev)
if (!mmres || !irqres) if (!mmres || !irqres)
return -ENODEV; return -ENODEV;
if (np) if (np) {
port = of_alias_get_id(np, "serial"); port = of_alias_get_id(np, "serial");
if (port >= VT8500_MAX_PORTS) if (port >= VT8500_MAX_PORTS)
port = -1; port = -1;
else } else {
port = -1; port = -1;
}
if (port < 0) { if (port < 0) {
/* calculate the port id */ /* calculate the port id */
......
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