mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
sparc64: vcc: Fix error return code in vcc_probe()
[ Upstream commit ff62255a2a ]
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 <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20200427122415.47416-1-weiyongjun1@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f1723949cf
commit
294e26f891
@@ -605,6 +605,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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user