Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30ebc5e4 authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab
Browse files

[media] rc: unlock on error in show_protocols()



We recently introduced a new return -ENODEV in this function but we need
to unlock before returning.

[mchehab@redhat.com: found two patches with the same fix. Merged SOB's/acks into one patch]
Acked-by: default avatarHerton R. Krzesinski <herton.krzesinski@canonical.com>
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarDouglas Bagnall <douglas@paradise.net.nz>

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 45b82596
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -789,8 +789,10 @@ static ssize_t show_protocols(struct device *device,
	} else if (dev->raw) {
		enabled = dev->raw->enabled_protocols;
		allowed = ir_raw_get_allowed_protocols();
	} else
	} else {
		mutex_unlock(&dev->lock);
		return -ENODEV;
	}

	IR_dprintk(1, "allowed - 0x%llx, enabled - 0x%llx\n",
		   (long long)allowed,