mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
ser_gigaset: return -ENOMEM on error instead of success
[ Upstream commit93a97c50cb] If we can't allocate the resources in gigaset_initdriver() then we should return -ENOMEM instead of zero. Fixes:2869b23e4b("[PATCH] drivers/isdn/gigaset: new M101 driver (v2)") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
33c7b0f74c
commit
1e5298d4c8
|
|
@ -762,8 +762,10 @@ static int __init ser_gigaset_init(void)
|
|||
driver = gigaset_initdriver(GIGASET_MINOR, GIGASET_MINORS,
|
||||
GIGASET_MODULENAME, GIGASET_DEVNAME,
|
||||
&ops, THIS_MODULE);
|
||||
if (!driver)
|
||||
if (!driver) {
|
||||
rc = -ENOMEM;
|
||||
goto error;
|
||||
}
|
||||
|
||||
rc = tty_register_ldisc(N_GIGASET_M101, &gigaset_ldisc);
|
||||
if (rc != 0) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user