From: Wei Yongjun Date: Mon, 27 Apr 2020 12:24:15 +0000 (+0000) Subject: sparc64: vcc: Fix error return code in vcc_probe() X-Git-Tag: v4.14.200~59 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=18710ee3a03bc63e4870ce98f95ead6ad3773bf1;p=users%2Fdwmw2%2Flinux.git sparc64: vcc: Fix error return code in vcc_probe() [ Upstream commit ff62255a2a5c1228a28f2bb063646f948115a309 ] Fix to return negative error code -ENOMEM from the error handling case instead of 0, as done elsewhere in this function. Signed-off-by: Wei Yongjun Link: https://lore.kernel.org/r/20200427122415.47416-1-weiyongjun1@huawei.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- diff --git a/drivers/tty/vcc.c b/drivers/tty/vcc.c index ef01d24858cd6..4e795353192bc 100644 --- a/drivers/tty/vcc.c +++ b/drivers/tty/vcc.c @@ -612,6 +612,7 @@ static int vcc_probe(struct vio_dev *vdev, const struct vio_device_id *id) port->index = vcc_table_add(port); if (port->index == -1) { pr_err("VCC: no more TTY indices left for allocation\n"); + rv = -ENOMEM; goto free_ldc; }