Commit d8d74777 authored by David Gounaris's avatar David Gounaris Committed by David S. Miller
Browse files

net/wan/fsl_ucc_hdlc: allow ucc index up to 7



There is a need to allow higher indexes to be
able to support MPC83xx platforms. (UCC1-UCC8)

Signed-off-by: default avatarDavid Gounaris <david.gounaris@infinera.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 68ddc82a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1015,7 +1015,7 @@ static int ucc_hdlc_probe(struct platform_device *pdev)
	}

	ucc_num = val - 1;
	if ((ucc_num > 3) || (ucc_num < 0)) {
	if (ucc_num > (UCC_MAX_NUM - 1) || ucc_num < 0) {
		dev_err(&pdev->dev, ": Invalid UCC num\n");
		return -EINVAL;
	}