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

Commit 33874cb8 authored by Jesper Nilsson's avatar Jesper Nilsson
Browse files

CRISv10: Fix return before mutex_unlock in pcf8563

parent 7673538c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -345,7 +345,7 @@ static long pcf8563_unlocked_ioctl(struct file *filp, unsigned int cmd, unsigned
	int ret;

	mutex_lock(&pcf8563_mutex);
	return pcf8563_ioctl(filp, cmd, arg);
	ret = pcf8563_ioctl(filp, cmd, arg);
	mutex_unlock(&pcf8563_mutex);

	return ret;