Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb8478d7 authored by Axel Lin's avatar Axel Lin Committed by Greg Kroah-Hartman
Browse files

serial: ar933x_uart: Fix off-by-one for checking valid alias id



Current code uses the alias id as array subscript of ar933x_console_ports.
So the valid id is 0 ... CONFIG_SERIAL_AR933X_NR_UARTS - 1.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1d267ea6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -649,7 +649,7 @@ static int ar933x_uart_probe(struct platform_device *pdev)
			id = 0;
	}

	if (id > CONFIG_SERIAL_AR933X_NR_UARTS)
	if (id >= CONFIG_SERIAL_AR933X_NR_UARTS)
		return -EINVAL;

	irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);