diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2016-10-13 09:54:46 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 10:55:59 -0200 |
commit | 3f81678d8e4918788b17ab007f41b86aea030bdc (patch) | |
tree | ad0673a7d79e843f76401e1807077bdbddde2372 /drivers/media | |
parent | 9d45d5fbeb4672648926c8fd2c1f2c08105ee7c3 (diff) | |
download | linux-3f81678d8e4918788b17ab007f41b86aea030bdc.tar.gz linux-3f81678d8e4918788b17ab007f41b86aea030bdc.tar.bz2 linux-3f81678d8e4918788b17ab007f41b86aea030bdc.zip |
[media] RedRat3: Return directly after a failed rc_allocate_device() in redrat3_init_rc_dev()
Return directly after a call of the function "rc_allocate_device" failed
at the beginning.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/rc/redrat3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/redrat3.c b/drivers/media/rc/redrat3.c index 689df034dcfe..d3c81619cd87 100644 --- a/drivers/media/rc/redrat3.c +++ b/drivers/media/rc/redrat3.c @@ -902,7 +902,7 @@ static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3) rc = rc_allocate_device(); if (!rc) - goto out; + return NULL; snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s Infrared Remote Transceiver (%04x:%04x)", prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "", |