diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-11-27 16:35:30 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-27 15:59:02 (GMT) |
commit | afe5624b142279c6072ce1872811e309ad7e94be (patch) | |
tree | fdf169b07b3168a36752492ee55fce0f46c47ed2 /drivers/media/rc/rc-main.c | |
parent | a44dca1717ce2c2381339e21c07d1731a63a7888 (diff) | |
download | linux-fsl-qoriq-afe5624b142279c6072ce1872811e309ad7e94be.tar.xz |
[media] rc: unlock on error in store_protocols()
This error path is missing the unlock.
[mchehab@redhat.com: Merged two equal patches into one]
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Acked-by: David Härdeman <david@hardeman.nu>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc/rc-main.c')
-rw-r--r-- | drivers/media/rc/rc-main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index d593bc6..759a40a 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c @@ -892,7 +892,8 @@ static ssize_t store_protocols(struct device *device, if (i == ARRAY_SIZE(proto_names)) { IR_dprintk(1, "Unknown protocol: '%s'\n", tmp); - return -EINVAL; + ret = -EINVAL; + goto out; } count++; |