projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60da7d0
)
tty: vcc: Fix error return code in vcc_probe()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Mon, 27 Apr 2020 13:22:20 +0000
(13:22 +0000)
committer
David S. Miller
<davem@davemloft.net>
Wed, 13 May 2020 22:33:43 +0000
(15:33 -0700)
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/tty/vcc.c
patch
|
blob
|
history
diff --git
a/drivers/tty/vcc.c
b/drivers/tty/vcc.c
index d2a1e1228c82d0cafec86090760bcd6c1e853031..9ffd42e333b83f407b213d407d6f23094711adee 100644
(file)
--- a/
drivers/tty/vcc.c
+++ b/
drivers/tty/vcc.c
@@
-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;
}