Commit 6c1f86b2 authored by tangbin's avatar tangbin Committed by Greg Kroah-Hartman

tty:serial:mvebu-uart:fix a wrong return

commit 4a3e2084 upstream.

in this place, the function should return a
negative value and the PTR_ERR already returns
a negative,so return -PTR_ERR() is wrong.
Signed-off-by: default avatartangbin <tangbin@cmss.chinamobile.com>
Cc: stable <stable@vger.kernel.org>
Acked-by: default avatarJiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20200305013823.20976-1-tangbin@cmss.chinamobile.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6f0416c0
...@@ -840,7 +840,7 @@ static int mvebu_uart_probe(struct platform_device *pdev) ...@@ -840,7 +840,7 @@ static int mvebu_uart_probe(struct platform_device *pdev)
port->membase = devm_ioremap_resource(&pdev->dev, reg); port->membase = devm_ioremap_resource(&pdev->dev, reg);
if (IS_ERR(port->membase)) if (IS_ERR(port->membase))
return -PTR_ERR(port->membase); return PTR_ERR(port->membase);
mvuart = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_uart), mvuart = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_uart),
GFP_KERNEL); GFP_KERNEL);
......
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